Probable NPE fix for FourSepulchersManager.

This commit is contained in:
MobiusDev 2018-04-13 15:23:34 +00:00
parent badc4d0186
commit 302842ff69

View File

@ -1365,6 +1365,10 @@ public final class FourSepulchersManager
{ {
for (L2Npc mob : _allMobs) for (L2Npc mob : _allMobs)
{ {
if (mob == null)
{
continue;
}
try try
{ {
if (mob.getSpawn() != null) if (mob.getSpawn() != null)