diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/mineware/AntiHackFix.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/mineware/AntiHackFix.java index e3085c54e..f36777030 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/mineware/AntiHackFix.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/mineware/AntiHackFix.java @@ -72,9 +72,15 @@ public class AntiHackFix implements Listener Block blockSouthEast = block.getRelative(BlockFace.SOUTH_EAST); Block blockSouthWest = block.getRelative(BlockFace.SOUTH_WEST); - return !block.isEmpty() || !blockNorth.isEmpty() || !blockSouth.isEmpty() || !blockEast.isEmpty() - || !blockWest.isEmpty() || !blockNorthEast.isEmpty() || !blockNorthWest.isEmpty() - || !blockSouthEast.isEmpty() || !blockSouthWest.isEmpty(); + return !block.isEmpty() || + !blockNorth.isEmpty() || + !blockSouth.isEmpty() || + !blockEast.isEmpty() || + !blockWest.isEmpty() || + !blockNorthEast.isEmpty() || + !blockNorthWest.isEmpty() || + !blockSouthEast.isEmpty() || + !blockSouthWest.isEmpty(); } public void clear()