Player zone radius now reflects 24.3 at 875.

This commit is contained in:
2023-05-05 08:51:49 -04:00
parent 3191c20a8c
commit a113295058
6 changed files with 14 additions and 16 deletions
+3 -4
View File
@@ -2269,14 +2269,13 @@ public class Enum {
public enum CityBoundsType {
GRID(512),
ZONE(576),
SIEGE(1040);
GRID(640),
ZONE(875);
public final float extents;
CityBoundsType(float extents) {
this.extents = extents;
this.extents = extents;
}
}