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
@@ -53,9 +53,9 @@ public class MovementUtilities {
//Guards recall distance = 814.
if (tol != null){
if (agent.getLoc().distanceSquared2D(tol.getLoc()) > sqr(Enum.CityBoundsType.SIEGE.extents)) {
return false;
}
if (agent.getLoc().distanceSquared2D(tol.getLoc()) > sqr(Enum.CityBoundsType.ZONE.extents)) {
return false;
}
}
}