More PowerEntry parsing work.

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