Inform the client when a move event is cancelled.

This commit is contained in:
Rigby 2011-06-22 04:04:11 +01:00 committed by EvilSeph
parent 568731f29c
commit 7efaa1a02e

View File

@ -141,7 +141,8 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
// If the event is cancelled we move the player back to their old location.
if (event.isCancelled()) {
to = from;
this.player.netServerHandler.sendPacket(new Packet13PlayerLookMove(from.getX(), from.getY() + 1.6200000047683716D, from.getY(), from.getZ(), from.getYaw(), from.getPitch(), false));
return;
}
/* If a Plugin has changed the To destination then we teleport the Player