wall sign issue

This commit is contained in:
boy0001 2014-12-18 18:45:26 +11:00
parent 4f7f439a2a
commit d777b42a48
2 changed files with 4 additions and 3 deletions

View file

@ -259,7 +259,7 @@ public class PlotHelper {
final PlotWorld plotworld = PlotMain.getWorldSettings(world);
final Location loc = manager.getSignLoc(world, plotworld, p);
final Block bs = loc.getBlock();
if (bs.getType() != Material.WALL_SIGN) {
if (bs.getType() == Material.WALL_SIGN) {
bs.setType(Material.AIR);
}
}