Add fallback for when jline fails to initialize. Fixes BUKKIT-1675.

This commit is contained in:
Travis Watkins
2012-05-22 23:44:03 -05:00
parent 21327265f0
commit 94e9543a14
2 changed files with 12 additions and 2 deletions

View File

@@ -932,6 +932,7 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
} else if (packet19entityaction.animation == 5) {
this.player.setSprinting(false);
} else if (packet19entityaction.animation == 3) {
if (this.player.fauxSleeping && !this.player.sleeping) return; // CraftBukkit - Can't leave bed if not in one!
this.player.a(false, true, true);
this.checkMovement = false;
}