More powerAction work.

This commit is contained in:
2024-08-18 15:01:05 -04:00
parent 547b101c60
commit c871c253b1
+3 -3
View File
@@ -112,15 +112,15 @@ public class PowersParser {
while (iterator.hasNext()) {
String lineValue = iterator.next();
String[] linevalues = lineValue.split("=");
String key = linevalues[0].trim();
String[] lineValues = lineValue.split("=");
String key = lineValues[0].trim();
PowerAction powerAction;
String[] arguments;
switch (key) {
case "ACTION":
powerAction = new PowerAction();
arguments = linevalues[1].split(" ");
arguments = lineValues[1].split(" ");
powerAction.effect_id = arguments[0];
break;