Protect: Remove protection when attached block is destroyed

This commit is contained in:
ementalo 2011-06-11 16:05:14 +01:00
parent 26c9b34744
commit 01f69b3f2b

View file

@ -208,7 +208,10 @@ public class EssentialsProtectBlockListener extends BlockListener
BlockFace.NORTH,
BlockFace.EAST,
BlockFace.SOUTH,
BlockFace.WEST
BlockFace.WEST,
BlockFace.UP,
BlockFace.DOWN,
BlockFace.SELF
};
@Override
@ -263,8 +266,12 @@ public class EssentialsProtectBlockListener extends BlockListener
}
else
{
storage.unprotectBlock(block);
}
for (BlockFace blockFace : faces)
{
final Block against = block.getFace(blockFace);
storage.unprotectBlock(against);
}
}
return;
}
else
@ -292,7 +299,11 @@ public class EssentialsProtectBlockListener extends BlockListener
}
else
{
storage.unprotectBlock(block);
for (BlockFace blockFace : faces)
{
final Block against = block.getFace(blockFace);
storage.unprotectBlock(against);
}
}
}
event.setCancelled(true);