Add special case for handling place event with lilies. Fixes BUKKIT-5641

This commit is contained in:
bloodshot
2014-05-31 18:19:44 -04:00
committed by Travis Watkins
parent 1c13d076af
commit 1b48298d25
2 changed files with 9 additions and 1 deletions

View File

@@ -610,7 +610,7 @@ public class PlayerConnection implements PacketPlayInListener {
// CraftBukkit - notch decrements the counter by 1 in the above method with food,
// snowballs and so forth, but he does it in a place that doesn't cause the
// inventory update packet to get sent
always = (itemstack.count != itemstackAmount);
always = (itemstack.count != itemstackAmount) || itemstack.getItem() == Item.getItemOf(Blocks.WATER_LILY);
// CraftBukkit end
} else if (packetplayinblockplace.d() >= this.minecraftServer.getMaxBuildHeight() - 1 && (packetplayinblockplace.getFace() == 1 || packetplayinblockplace.d() >= this.minecraftServer.getMaxBuildHeight())) {
ChatMessage chatmessage = new ChatMessage("build.tooHigh", new Object[] { Integer.valueOf(this.minecraftServer.getMaxBuildHeight())});