Refactored Zone to new system

This commit is contained in:
2023-10-18 09:08:41 -04:00
parent e1add3c7e6
commit ff1c0bd347
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ public class Zone extends AbstractWorldObject {
public int min_level;
public int max_level;
public boolean hasBeenHotzone = false;
public ArrayList<Zone> nodes = null;
public ArrayList<Zone> nodes = new ArrayList<>();
public int parentZoneID;
public Zone parent = null;
public Bounds bounds;