terraform update
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user