extended range of spire effects

This commit is contained in:
2025-03-27 17:00:33 -05:00
parent b4254dbad4
commit ba4ccfa6bf
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -953,7 +953,7 @@ public class City extends AbstractWorldObject {
public boolean isLocationWithinSiegeBounds(Vector3fImmutable insideLoc) {
return insideLoc.isInsideCircle(this.getLoc(), 880f);
return insideLoc.isInsideCircle(this.getLoc(), CityBoundsType.SIEGEBOUNDS.extents);
}