Remove debug message from NpcMovementTask.

This commit is contained in:
Major-
2015-03-03 07:43:34 +00:00
parent 65ecd1b5fc
commit f2130076b7
@@ -61,7 +61,6 @@ public final class NpcMovementTask extends ScheduledTask {
public void addNpc(Npc npc) {
Preconditions.checkArgument(npc.hasBoundaries(), "Cannot add an npc with no boundaries to the NpcMovementTask.");
npcs.offer(npc);
System.out.println("Adding npc to movement task: " + npc.getId());
}
@Override