Update client on cancelled leash. Fixes BUKKIT-4395

This commit is contained in:
mbax 2013-07-02 19:34:08 -04:00
parent a15096ae1c
commit 774cf2a2ca

View File

@ -1106,6 +1106,10 @@ public class PlayerConnection extends Connection {
this.server.getPluginManager().callEvent(event);
if (event.isCancelled()) {
if (itemInHand != null && itemInHand.id == Item.LEASH.id && entity instanceof EntityInsentient) {
// Refresh the current leash state
this.sendPacket(new Packet39AttachEntity(1, entity, ((EntityInsentient) entity).bE()));
}
return;
}
// CraftBukkit end