From 7940eeb0eee2e4507368c6004b3edf1d448f075d Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 8 Jul 2016 17:49:38 +0100 Subject: [PATCH] PC-633 Allows humans in Wither Assault to place blocks under the map, allowing them to no longer get stuck --- .../nautilus/game/arcade/game/games/wither/WitherGame.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/wither/WitherGame.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/wither/WitherGame.java index 20e743fc8..670f13771 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/wither/WitherGame.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/wither/WitherGame.java @@ -271,13 +271,6 @@ public class WitherGame extends TeamGame implements IBlockRestorer return; } - if(event.getBlock().getLocation().getBlockY() < _maxY - 4) - { - event.getPlayer().sendMessage(F.main("BlockChecker", "You may not build under this height!")); - event.setCancelled(true); - return; - } - _locationsOfBlocks.add(event.getBlock().getLocation()); }