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