1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-03 14:14:44 +02:00

Added temp debug messages about mob spawn removal

This commit is contained in:
nossr50
2012-02-22 21:00:12 -08:00
parent f274d47c81
commit 799e11c36c

@ -190,7 +190,11 @@ public class mcEntityListener implements Listener
//Remove mob from mob spawner list
if(plugin.misc.mobSpawnerList.contains(x.getEntityId()))
{
System.out.println("DEBUG SIZE BEFORE: "+plugin.misc.mobSpawnerList.size());
plugin.misc.mobSpawnerList.remove((Object)x.getEntityId());
System.out.println("DEBUG SIZE AFTER: "+plugin.misc.mobSpawnerList.size());
}
//Remove bleed track
if(plugin.misc.bleedTracker.contains((LivingEntity)x))