allow air

This commit is contained in:
Jesse Boyd 2017-09-23 19:28:40 +10:00
parent 6b55b8cd67
commit 1d20ae2777
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -88,14 +88,14 @@ public class Set extends SubCommand {
}
}
return false;
} else if (!allowUnsafe && !WorldUtil.IMP.isBlockSolid(block)) {
} else if (!allowUnsafe && (block.id == 0 || !WorldUtil.IMP.isBlockSolid(block))) {
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
return false;
}
}
if (!allowUnsafe) {
for (PlotBlock block : blocks) {
if (!WorldUtil.IMP.isBlockSolid(block)) {
if (block.id == 0 || !WorldUtil.IMP.isBlockSolid(block)) {
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
return false;
}