geforkt von Mirrors/FastAsyncWorldEdit
Fixed a mask parsing error that raised java.lang.StringIndexOutOfBoundsException.
Dieser Commit ist enthalten in:
Ursprung
2e7de18840
Commit
730244056c
@ -415,6 +415,10 @@ public class WorldEdit {
|
||||
for (String component : maskString.split(" ")) {
|
||||
Mask current = null;
|
||||
|
||||
if (component.length() == 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (component.charAt(0) == '#') {
|
||||
if (component.equalsIgnoreCase("#existing")) {
|
||||
current = new ExistingBlockMask();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren