diff options
author | ementalo <ementalo@gmx.co.uk> | 2011-06-11 16:05:14 +0100 |
---|---|---|
committer | ementalo <ementalo@gmx.co.uk> | 2011-06-11 16:05:14 +0100 |
commit | 00f4586500a08cbd5a179adfc3c730ccae04a6d6 (patch) | |
tree | cc1bd8ab4b5cb8a2589581104f5bc790215a1b3c /EssentialsProtect/src/com/earth2me/essentials | |
parent | 2e6062fcb8e98b61b6bf81fc6418729fc7b39c27 (diff) | |
download | Essentials-00f4586500a08cbd5a179adfc3c730ccae04a6d6.tar Essentials-00f4586500a08cbd5a179adfc3c730ccae04a6d6.tar.gz Essentials-00f4586500a08cbd5a179adfc3c730ccae04a6d6.tar.lz Essentials-00f4586500a08cbd5a179adfc3c730ccae04a6d6.tar.xz Essentials-00f4586500a08cbd5a179adfc3c730ccae04a6d6.zip |
Protect: Remove protection when attached block is destroyed
Diffstat (limited to 'EssentialsProtect/src/com/earth2me/essentials')
-rw-r--r-- | EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java index 56f175897..39e912fbe 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java @@ -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); |