Let's be a little less tricky to the client. Relates to BUKKIT-637

This commit is contained in:
EvilSeph 2012-01-26 20:34:23 -05:00
parent 5900268e7a
commit 98fd1a3606

View File

@ -207,8 +207,8 @@ public class ItemInWorldManager {
if (world.getTileEntity(i, j, k) == null) {
Packet53BlockChange packet = new Packet53BlockChange(i, j, k, this.world);
packet.material = block.getTypeId();
packet.data = block.getData();
packet.material = 0;
packet.data = 0;
((EntityPlayer) this.player).netServerHandler.sendPacket(packet);
}