mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 10:57:11 +00:00
Fixed WORLDEDIT-2707, regex in WorldEdit.getBlockPattern()
Regex in WorldEdit.getBlockPattern() was overly complex.
This commit is contained in:
parent
c2932cc54f
commit
da6103c33e
@ -671,7 +671,7 @@ public class WorldEdit {
|
|||||||
double chance;
|
double chance;
|
||||||
|
|
||||||
// Parse special percentage syntax
|
// Parse special percentage syntax
|
||||||
if (s.matches("[0-9]+(?:\\.(?:[0-9]+)?)?%.*")) {
|
if (s.matches("[0-9]+(\\.[0-9]*)?%.*")) {
|
||||||
String[] p = s.split("%");
|
String[] p = s.split("%");
|
||||||
chance = Double.parseDouble(p[0]);
|
chance = Double.parseDouble(p[0]);
|
||||||
block = getBlock(player, p[1]);
|
block = getBlock(player, p[1]);
|
||||||
|
Loading…
Reference in New Issue
Block a user