terraform update

This commit is contained in:
2024-05-01 21:20:04 -05:00
parent 3d683fc9a3
commit e8df9ef0ea
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2310,8 +2310,8 @@ public class Enum {
public enum CityBoundsType { public enum CityBoundsType {
GRID(640), GRID(640),
ZONE(775), ZONE(680),
PLACEMENT(776); PLACEMENT(681);
public final float extents; public final float extents;
+2 -2
View File
@@ -113,8 +113,8 @@ public class Zone extends AbstractGameObject {
if (zone.playerCityID > 0) { if (zone.playerCityID > 0) {
writer.put((byte) 1); // Player City - True writer.put((byte) 1); // Player City - True
writer.putFloat(Enum.CityBoundsType.ZONE.extents); writer.putFloat(Enum.CityBoundsType.GRID.extents);
writer.putFloat(Enum.CityBoundsType.ZONE.extents); writer.putFloat(Enum.CityBoundsType.GRID.extents);
} else } else
writer.put((byte) 0); // Player City - False writer.put((byte) 0); // Player City - False