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