More powerAction work.

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