One or more whitspaces
This commit is contained in:
@@ -114,7 +114,7 @@ public class EffectsParser {
|
||||
String[] conditions = matcher.group().trim().split("\n");
|
||||
|
||||
for (String condition : conditions) {
|
||||
String[] parameters = condition.trim().split(" ");
|
||||
String[] parameters = condition.trim().split("\\s+");
|
||||
effectEntry.conditions.put(parameters[0], Float.parseFloat(parameters[1]));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -152,7 +152,11 @@ public class PowersParser {
|
||||
switch (key) {
|
||||
case "ACTION":
|
||||
powerAction = new PowerAction();
|
||||
arguments = lineValues[1].trim().split(" ");
|
||||
arguments = lineValues[1].trim().split("\\s+");
|
||||
|
||||
if (powerEntry.power_id.equals("HNT-050"))
|
||||
Logger.error("debug");
|
||||
|
||||
powerAction.effect_id = arguments[0];
|
||||
powerAction.minTrains = Integer.parseInt(arguments[1]);
|
||||
powerAction.maxTrains = Integer.parseInt(arguments[2]);
|
||||
@@ -167,7 +171,7 @@ public class PowersParser {
|
||||
powerEntry.maxLevel = Integer.parseInt(lineValues[1].trim());
|
||||
break;
|
||||
case "HateValue":
|
||||
arguments = lineValues[1].trim().split(" ");
|
||||
arguments = lineValues[1].trim().split("\\s+");
|
||||
powerEntry.hateValue = Integer.parseInt(arguments[0]);
|
||||
|
||||
// Not all entries have a curve. Defaults to DefaultFlat;
|
||||
@@ -188,7 +192,7 @@ public class PowersParser {
|
||||
powerEntry.category = lineValues[1].trim();
|
||||
break;
|
||||
case "CURVE":
|
||||
arguments = lineValues[1].trim().split(" ");
|
||||
arguments = lineValues[1].trim().split("\\s+");
|
||||
powerEntry.slopeType = arguments[0];
|
||||
powerEntry.curve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user