Format some code

This commit is contained in:
Shevchik 2014-03-07 20:34:53 +04:00
parent 0473d1c7dd
commit 82dd666ef7

View File

@ -192,19 +192,24 @@ public class TrySitEventListener implements Listener {
// Rotate the player's view to the descending side of the block. // Rotate the player's view to the descending side of the block.
if (plugin.autoRotate && stairs != null) { if (plugin.autoRotate && stairs != null) {
switch (stairs.getDescendingDirection()) { switch (stairs.getDescendingDirection()) {
case NORTH: case NORTH: {
plocation.setYaw(180); plocation.setYaw(180);
break; break;
case EAST: }
plocation.setYaw(-90); case EAST: {
break; plocation.setYaw(-90);
case SOUTH: break;
plocation.setYaw(0); }
break; case SOUTH: {
case WEST: plocation.setYaw(0);
plocation.setYaw(90); break;
default: }
; case WEST: {
plocation.setYaw(90);
break;
}
default: {
}
} }
} else { } else {
plocation.setYaw(playerYaw); plocation.setYaw(playerYaw);