Variable renamed

This commit is contained in:
2025-01-20 16:10:36 -05:00
parent b9b6b37505
commit 402f608f7a
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -105,7 +105,7 @@ public class PowersParser {
PowerEntry power = new PowerEntry();
power.power_type = mbEnums.PowerType.valueOf(iterator.next());
power.icon = Integer.parseInt(iterator.next());
power.powerBase = iterator.next().replaceAll("\"", "");
power.focusLine = iterator.next().replaceAll("\"", "");
powerEntry.powers.add(power);
String nextValue = iterator.next();
@@ -116,7 +116,7 @@ public class PowersParser {
power = new PowerEntry();
power.power_type = mbEnums.PowerType.valueOf(nextValue);
power.icon = Integer.parseInt(iterator.next());
power.powerBase = iterator.next().replaceAll("\"", "");
power.focusLine = iterator.next().replaceAll("\"", "");
powerEntry.powers.add(power);
powerEntry.target_type = mbEnums.PowerTargetType.valueOf(iterator.next());
} else
@@ -153,9 +153,9 @@ public class PowersParser {
ActionEntry actionEntry;
List<String> arguments;
Matcher argumentMatcher;
if(power.powerBase.equalsIgnoreCase("none"))
if (power.focusLine.equalsIgnoreCase("none"))
continue;
String loggerString = "PARSING: " + power.powerBase + " KEY: " + key;
String loggerString = "PARSING: " + power.focusLine + " KEY: " + key;
try {
switch (key) {
case "ACTION":
+1 -1
View File
@@ -13,5 +13,5 @@ import engine.mbEnums;
public class PowerEntry {
public mbEnums.PowerType power_type;
public int icon;
public String powerBase;
public String focusLine;
}