Update PlayerAnimation.java

This commit is contained in:
fullwall 2014-08-28 23:32:43 +08:00
parent 6d8b40d3f1
commit 4b1737e128

View File

@ -58,7 +58,9 @@ public enum PlayerAnimation {
cancel(); cancel();
return; return;
} }
player.mount(player); if (player.passenger != player) {
player.mount(player);
}
} }
}, 0, 1); }, 0, 1);
} }