Removed debug

This commit is contained in:
Robert 2013-11-12 10:45:09 -05:00
parent 6a93f99f43
commit 5568e0dd61

View file

@ -69,14 +69,12 @@ public class MachineMiningEvent extends Event
List<ItemStack> items = block.getBlockDropped(world, target.intX(), target.intY(), target.intZ(), target.getBlockMetadata(world), 1);
if (items != null)
{
System.out.println("Items");
MiningDrop event = new MiningDrop(world, target, machine, items);
MinecraftForge.EVENT_BUS.post(event);
items = event.items;
return items;
}
}
System.out.println("no Items");
return null;
}
}