forked from MagicBane/Server
Harden against null
This commit is contained in:
@@ -343,6 +343,7 @@ public enum BuildingManager {
|
|||||||
Mob hirelingMob = (Mob) hireling;
|
Mob hirelingMob = (Mob) hireling;
|
||||||
|
|
||||||
if (hirelingMob.getParentZone() != null)
|
if (hirelingMob.getParentZone() != null)
|
||||||
|
if (hirelingMob.getParentZone().zoneMobSet.contains(hirelingMob))
|
||||||
hirelingMob.getParentZone().zoneMobSet.remove(hireling);
|
hirelingMob.getParentZone().zoneMobSet.remove(hireling);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -352,6 +353,7 @@ public enum BuildingManager {
|
|||||||
NPC hirelingNPC = (NPC) hireling;
|
NPC hirelingNPC = (NPC) hireling;
|
||||||
|
|
||||||
if (hirelingNPC.getParentZone() != null)
|
if (hirelingNPC.getParentZone() != null)
|
||||||
|
if (hirelingNPC.getParentZone().zoneNPCSet.contains(hirelingNPC))
|
||||||
hirelingNPC.getParentZone().zoneNPCSet.remove(hireling);
|
hirelingNPC.getParentZone().zoneNPCSet.remove(hireling);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user