mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-24 19:46:34 +01:00
Fix for @UUID00
This commit is contained in:
parent
b4e4ffa0fc
commit
5759cd0589
@ -78,7 +78,7 @@ public class PlotSquaredFeature extends FaweMaskManager {
|
||||
} else {
|
||||
regions = WEManager.getMask(pp);
|
||||
}
|
||||
if (regions.size() == 0) {
|
||||
if (regions == null || regions.size() == 0) {
|
||||
return null;
|
||||
}
|
||||
final HashSet<com.boydti.fawe.object.RegionWrapper> faweRegions = new HashSet<>();
|
||||
|
@ -512,7 +512,7 @@ public class BrushCommands {
|
||||
|
||||
@Command(
|
||||
aliases = { "shatter", "partition", "split" },
|
||||
usage = "<pattern> [radius] [count] [distance]",
|
||||
usage = "<pattern> [radius] [count]",
|
||||
desc = "Creates random lines to break the terrain into pieces",
|
||||
help =
|
||||
"Chooses the shatter brush",
|
||||
|
Loading…
Reference in New Issue
Block a user