fix for error when deleting a gate with no blocks
This commit is contained in:
@ -134,8 +134,11 @@ public class Gate
|
||||
{
|
||||
Set<Block> blocks = FloodUtil.getGateFrameBlocks(from.getBlock());
|
||||
|
||||
for (Block block : blocks)
|
||||
block.setType(Material.AIR);
|
||||
if (blocks != null)
|
||||
{
|
||||
for (Block block : blocks)
|
||||
block.setType(Material.AIR);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user