Removed the console spam and instead alert the sender at the end.

This commit is contained in:
Rigby 2011-07-14 03:30:54 +01:00
parent ab56f9ed4d
commit 0925c37eb4

View File

@ -68,7 +68,9 @@ public class PurgeWorlds {
}
}
this.plugin.log(Level.INFO, "I just murdered " + entitiesKilled + " in " + world.getName());
if (sender != null) {
sender.sendMessage(entitiesKilled + " entities purged from the world.");
}
}
private boolean killCreature(MVWorld mvworld, Entity e, List<String> creaturesToKill, boolean negate) {