Merge branch 'magicbox1.5' into feature-guard-patrol

This commit is contained in:
2023-05-09 18:40:04 -05:00
10 changed files with 48 additions and 100 deletions
+4 -4
View File
@@ -2269,14 +2269,14 @@ public class Enum {
public enum CityBoundsType {
GRID(512),
ZONE(576),
SIEGE(1040);
GRID(640),
ZONE(875),
PLACEMENT(1050);
public final float extents;
CityBoundsType(float extents) {
this.extents = extents;
this.extents = extents;
}
}