Refactored city planting to use new system.

This commit is contained in:
2023-10-18 09:38:19 -04:00
parent 9ee60c9361
commit 4d290c9064
2 changed files with 8 additions and 27 deletions
+1 -6
View File
@@ -181,7 +181,7 @@ public enum ZoneManager {
}
if (zone.guild_zone) {
addPlayerCityZone(zone);
ZoneManager.playerCityZones.add(zone);
return;
}
@@ -199,11 +199,6 @@ public enum ZoneManager {
ZoneManager.npcCityZones.add(zone);
}
public static final void addPlayerCityZone(final Zone zone) {
zone.guild_zone = true;
ZoneManager.playerCityZones.add(zone);
}
public static final void generateAndSetRandomHotzone() {
Zone hotZone;