mirror of
https://github.com/songoda/EpicEnchants.git
synced 2024-11-13 06:07:41 +01:00
Extend broken parseJs method for "n > x" syntax
More of an hack than anything
Bug introduced in 423ae8977e
SD-9217
This commit is contained in:
parent
771b3eaf70
commit
1a4d33879a
@ -99,6 +99,20 @@ public class GeneralUtils {
|
||||
}
|
||||
|
||||
public static Object parseJS(String toParse, String type, Object def) {
|
||||
if (toParse.trim().matches("^\\d+\\s+(<|>)\\s*\\d+$")) { // e.g. "1 < 2"
|
||||
toParse = toParse.trim();
|
||||
|
||||
double firstNumber = Double.parseDouble(toParse.substring(0, toParse.indexOf(" ")));
|
||||
String symbol = toParse.substring(toParse.indexOf(" ") + 1, toParse.indexOf(" ") + 2);
|
||||
double secondNumber = Double.parseDouble(toParse.substring(toParse.indexOf(" ") + 2));
|
||||
|
||||
if (symbol.equals(">")) {
|
||||
return firstNumber > secondNumber;
|
||||
}
|
||||
|
||||
return firstNumber < secondNumber;
|
||||
}
|
||||
|
||||
// FIXME: JavaScript != Math...
|
||||
// Input "false ? (8 * 3) : (4 * 3)" fails for obvious reasons
|
||||
return MathUtils.eval(toParse, "[EpicEnchants] One of your " + type + " expressions is not properly formatted.");
|
||||
|
Loading…
Reference in New Issue
Block a user