Rework of ismacro and iscontinent.

This commit is contained in:
2023-03-21 03:20:57 -04:00
parent ab14173aaa
commit 94b863a835
3 changed files with 15 additions and 11 deletions
+2 -2
View File
@@ -444,7 +444,7 @@ public enum ZoneManager {
boolean validLocation = true;
Bounds treeBounds;
if (currentZone.isContininent() == false)
if (currentZone.isContinent() == false)
return false;
@@ -456,7 +456,7 @@ public enum ZoneManager {
for (Zone zone : zoneList) {
if (zone.isContininent())
if (zone.isContinent())
continue;
if (Bounds.collide(treeBounds, zone.getBounds(), 0.0f))