PowerAction work started.

This commit is contained in:
2024-08-19 13:13:54 -04:00
parent fab77a0dbb
commit a9a9b6a8ac
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -216,7 +216,7 @@ public class PowersParser {
powerEntry.bladeTrails = Boolean.parseBoolean(lineValues[1].trim());
break;
case "EFFECTPREREQ":
effectDescription effectPreReq = new effectDescription();
EffectDescription effectPreReq = new EffectDescription();
arguments = lineValues[1].trim().split("\\s+");
effectPreReq.effect_id = arguments[9];
effectPreReq.level = Integer.parseInt(arguments[1]);
@@ -260,7 +260,7 @@ public class PowersParser {
powerEntry.casterPulseParticle = Integer.parseInt(lineValues[1].trim());
break;
case "TARGETEFFECTPREREQS_ORED":
effectDescription preReq = new effectDescription();
EffectDescription preReq = new EffectDescription();
arguments = lineValues[1].trim().split("\\s+");
preReq.effect_id = arguments[0];
preReq.level = Integer.parseInt(arguments[1]);