geforkt von Mirrors/FastAsyncWorldEdit
Fixed WORLDEDIT-2707, regex in WorldEdit.getBlockPattern()
Regex in WorldEdit.getBlockPattern() was overly complex.
Dieser Commit ist enthalten in:
Ursprung
c2932cc54f
Commit
da6103c33e
@ -671,7 +671,7 @@ public class WorldEdit {
|
||||
double chance;
|
||||
|
||||
// Parse special percentage syntax
|
||||
if (s.matches("[0-9]+(?:\\.(?:[0-9]+)?)?%.*")) {
|
||||
if (s.matches("[0-9]+(\\.[0-9]*)?%.*")) {
|
||||
String[] p = s.split("%");
|
||||
chance = Double.parseDouble(p[0]);
|
||||
block = getBlock(player, p[1]);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren