Allows humans in Wither Assault to place blocks under the map, allowing
them to no longer get stuck
This commit is contained in:
Sam 2016-07-08 17:49:38 +01:00
parent aae24d862a
commit 7940eeb0ee
1 changed files with 0 additions and 7 deletions

View File

@ -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());
}