More PowerEntry parsing work.

This commit is contained in:
2024-08-19 08:10:13 -04:00
parent 12f8139d1e
commit a863902370
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -261,6 +261,9 @@ public class PowersParser {
case "MAXNUMPLAYERTARGETS":
powerEntry.maxPlayerTargets = Integer.parseInt(lineValues[1].trim());
break;
case "ISADMINPOWER":
powerEntry.isAdminPower = Boolean.parseBoolean(lineValues[1].trim());
break;
default:
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id);
}
+2
View File
@@ -58,6 +58,8 @@ public class PowerEntry {
public int pulseDuration;
public int maxMobTargets;
public int maxPlayerTargets;
public boolean isAdminPower = false;
}