1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 17:45:08 +02:00

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,7 +266,11 @@ public class EssentialsProtectBlockListener extends BlockListener
}
else
{
storage.unprotectBlock(block);
for (BlockFace blockFace : faces)
{
final Block against = block.getFace(blockFace);
storage.unprotectBlock(against);
}
}
return;
}
@@ -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);