forked from MagicBane/Server
Variable renamed
This commit is contained in:
@@ -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":
|
||||
|
||||
@@ -13,5 +13,5 @@ import engine.mbEnums;
|
||||
public class PowerEntry {
|
||||
public mbEnums.PowerType power_type;
|
||||
public int icon;
|
||||
public String powerBase;
|
||||
public String focusLine;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user