Dev command updated

This commit is contained in:
2023-10-08 09:22:53 -04:00
parent 0d75e6db9b
commit 5279fa8fbe
3 changed files with 3 additions and 36 deletions
@@ -55,8 +55,6 @@ public class Terrain {
public short[][] pixelColorValues;
public int cell_count_x;
public int cell_count_y;
public float zone_minBlend;
public float zone_maxBlend;
public float terrain_scale;
@@ -69,9 +67,6 @@ public class Terrain {
this.zoneLoadID = rs.getInt("zoneLoadID");
this.seaLevel = rs.getFloat("seaLevel");
this.zone_minBlend = rs.getFloat("outsetZ");
this.zone_maxBlend = rs.getFloat("outsetX");
// Cache the full extents to avoid the calculation
this.fullExtentsX = halfExtentsX * 2;
@@ -121,8 +116,6 @@ public class Terrain {
int halfExtentsY = (int) Enum.CityBoundsType.ZONE.halfExtents;
this.zoneLoadID = 0;
this.seaLevel = 0;
this.zone_minBlend = 0;
this.zone_maxBlend = 0;
// Cache the full extents to avoid the calculation