Browse Source

More powerAction work.

feature-config-parsing2
MagicBot 3 months ago
parent
commit
c871c253b1
  1. 6
      src/engine/wpak/PowersParser.java

6
src/engine/wpak/PowersParser.java

@ -112,15 +112,15 @@ public class PowersParser {
while (iterator.hasNext()) { while (iterator.hasNext()) {
String lineValue = iterator.next(); String lineValue = iterator.next();
String[] linevalues = lineValue.split("="); String[] lineValues = lineValue.split("=");
String key = linevalues[0].trim(); String key = lineValues[0].trim();
PowerAction powerAction; PowerAction powerAction;
String[] arguments; String[] arguments;
switch (key) { switch (key) {
case "ACTION": case "ACTION":
powerAction = new PowerAction(); powerAction = new PowerAction();
arguments = linevalues[1].split(" "); arguments = lineValues[1].split(" ");
powerAction.effect_id = arguments[0]; powerAction.effect_id = arguments[0];
break; break;

Loading…
Cancel
Save