Method moved to manager.

This commit is contained in:
2023-09-20 14:31:48 -04:00
parent 7b8cafc8ac
commit bf9fdae58b
4 changed files with 11 additions and 13 deletions
@@ -351,14 +351,6 @@ public class HeightMap {
}
public static boolean isLocUnderwater(Vector3fImmutable currentLoc) {
float localAltitude = HeightMap.getWorldHeight(currentLoc);
Zone zone = ZoneManager.findSmallestZone(currentLoc);
return localAltitude < zone.getSeaLevel();
}
private static void generatePixelData(HeightMap heightMap) {
Color color;