Fixed signs being blank if they were denied via the blacklist.

This commit is contained in:
sk89q 2010-11-20 10:59:34 -08:00
parent e95d7a8b6e
commit 9bc3a25191
1 changed files with 0 additions and 9 deletions

View File

@ -582,15 +582,6 @@ public class WorldGuardListener extends PluginListener {
Block block = new Block(id, complexBlock.getX(),
complexBlock.getY(), complexBlock.getZ());
if (!blacklist.onSilentUse(block, player)) {
return true;
}
} else if (complexBlock instanceof Sign) {
int id = etc.getServer().getBlockIdAt(complexBlock.getX(),
complexBlock.getY(), complexBlock.getZ());
Block block = new Block(id, complexBlock.getX(),
complexBlock.getY(), complexBlock.getZ());
if (!blacklist.onSilentUse(block, player)) {
return true;
}