mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 22:56:45 +01:00
*
This commit is contained in:
parent
1d20ae2777
commit
2360782234
@ -88,14 +88,14 @@ public class Set extends SubCommand {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
} else if (!allowUnsafe && (block.id == 0 || !WorldUtil.IMP.isBlockSolid(block))) {
|
} else if (!allowUnsafe && (block.id != 0 && !WorldUtil.IMP.isBlockSolid(block))) {
|
||||||
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
|
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!allowUnsafe) {
|
if (!allowUnsafe) {
|
||||||
for (PlotBlock block : blocks) {
|
for (PlotBlock block : blocks) {
|
||||||
if (block.id == 0 || !WorldUtil.IMP.isBlockSolid(block)) {
|
if (block.id != 0 && !WorldUtil.IMP.isBlockSolid(block)) {
|
||||||
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
|
MainUtil.sendMessage(player, C.NOT_ALLOWED_BLOCK, block.toString());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user