geforkt von Mirrors/FastAsyncWorldEdit
Ursprung
66357b8adb
Commit
5692ec54dd
@ -114,10 +114,14 @@ public class RichPatternParser extends FaweParser<Pattern> {
|
|||||||
chance = Expression.compile(command.substring(0, percentIndex)).evaluate();
|
chance = Expression.compile(command.substring(0, percentIndex)).evaluate();
|
||||||
String value = command.substring(percentIndex + 1);
|
String value = command.substring(percentIndex + 1);
|
||||||
if (!entry.getValue().isEmpty()) {
|
if (!entry.getValue().isEmpty()) {
|
||||||
if (!value.isEmpty()) {
|
boolean addBrackets = !value.isEmpty();
|
||||||
value += " ";
|
if (addBrackets) {
|
||||||
|
value += "[";
|
||||||
}
|
}
|
||||||
value += StringMan.join(entry.getValue(), " ");
|
value += StringMan.join(entry.getValue(), " ");
|
||||||
|
if (addBrackets) {
|
||||||
|
value += "]";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
pattern = parseFromInput(value, context);
|
pattern = parseFromInput(value, context);
|
||||||
} else { // legacy block pattern
|
} else { // legacy block pattern
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren