Remove "Fetching addPacket..." spam as it isn't useful. Fixes BUKKIT-32

This commit is contained in:
Travis Watkins 2012-04-24 12:42:53 -05:00 committed by EvilSeph
parent 9c12dc0ef8
commit e3363db0a9

View file

@ -279,8 +279,10 @@ public class EntityTrackerEntry {
private Packet b() {
if (this.tracker.dead) {
// CraftBukkit - add some information
System.out.println("Fetching addPacket for removed entity: " + this.tracker.getBukkitEntity().toString());
// CraftBukkit start - remove useless error spam, just return
// System.out.println("Fetching addPacket for removed entity");
return null;
// CraftBukkit end
}
if (this.tracker instanceof EntityItem) {