One or more whitspaces

This commit is contained in:
2024-08-19 07:08:09 -04:00
parent 3498cc370f
commit 31f8b5a294
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -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]));
}
}
+7 -3
View File
@@ -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;