Logger is not necessary.

This commit is contained in:
MobiusDev 2019-01-07 04:42:17 +00:00
parent 8f24162235
commit 420d4583d9

View File

@ -488,7 +488,7 @@ public class AutoSpawnHandler
{ {
while (!L2World.getInstance().getVisibleObjectsInRange(npcInst, L2Npc.class, 10).isEmpty()) while (!L2World.getInstance().getVisibleObjectsInRange(npcInst, L2Npc.class, 10).isEmpty())
{ {
LOGGER.log(Level.INFO, "AutoSpawnHandler: Random spawn location " + npcInst.getLocation() + " for " + npcInst + " is occupied. Teleporting..."); // LOGGER.log(Level.INFO, "AutoSpawnHandler: Random spawn location " + npcInst.getLocation() + " for " + npcInst + " is occupied. Teleporting...");
npcInst.teleToLocation(locationList[Rnd.get(locationList.length)]); npcInst.teleToLocation(locationList[Rnd.get(locationList.length)]);
} }
} }