Method inlined

This commit is contained in:
2023-10-09 06:16:25 -04:00
parent 085f79cefd
commit 95558371df
7 changed files with 9 additions and 13 deletions
+2 -2
View File
@@ -310,7 +310,7 @@ public class Zone extends AbstractGameObject {
public boolean isContinent() {
if (this.equals(ZoneManager.getSeaFloor()))
if (this.equals(ZoneManager.seaFloor))
return false;
if (this.getNodes().isEmpty())
@@ -319,7 +319,7 @@ public class Zone extends AbstractGameObject {
if (this.getNodes().get(0).isMacroZone())
return true;
return this.parent.equals(ZoneManager.getSeaFloor());
return this.parent.equals(ZoneManager.seaFloor);
}
public void setHash() {