More PowerEntry parsing work.

This commit is contained in:
2024-08-19 08:20:35 -04:00
parent 394ba5a165
commit f20a5bb881
+1 -1
View File
@@ -257,7 +257,7 @@ public class PowersParser {
case "TARGETEFFECTPREREQS_ORED":
EffectPreReq preReq = new EffectPreReq();
arguments = lineValues[1].trim().split("\\s+");
preReq.effect_id = arguments[9];
preReq.effect_id = arguments[0];
preReq.level = Integer.parseInt(arguments[1]);
powerEntry.targetEffectPrereqs.add(preReq);
break;