This commit is contained in:
MattBDev
2016-07-19 10:22:50 -04:00
parent c1d4c481fb
commit 8b084839fd
2 changed files with 4 additions and 1 deletions

View File

@@ -209,7 +209,7 @@ public class PlotListener {
PlotGameMode gameMode = player.getGameMode();
if (gameMode == PlotGameMode.SURVIVAL || gameMode == PlotGameMode.ADVENTURE) {
player.setFlight(false);
} else if (player.getFlight() != true) {
} else if (!player.getFlight()) {
player.setFlight(true);
}
}