More PowerEntry parsing work.
This commit is contained in:
@@ -239,6 +239,9 @@ public class PowersParser {
|
||||
for (String restriction : arguments)
|
||||
powerEntry.monsterRestricts.add(mbEnums.MonsterType.valueOf(restriction.trim()));
|
||||
break;
|
||||
case "SHOULDCHECKPATH":
|
||||
powerEntry.shouldCheckPath = Boolean.parseBoolean(lineValues[1].trim());
|
||||
break;
|
||||
default:
|
||||
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id);
|
||||
}
|
||||
|
||||
@@ -51,4 +51,5 @@ public class PowerEntry {
|
||||
public boolean bladeTrails = false;
|
||||
public EquipmentPreReq equipmentPreReq;
|
||||
public EnumSet<mbEnums.MonsterType> monsterRestricts;
|
||||
public boolean shouldCheckPath = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user