More poweraction parsing work.

This commit is contained in:
2024-08-20 16:54:47 -04:00
parent 5d054142ff
commit 1c6be6a1ea
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ public class PowerActionParser {
statTransfer.fromStatBool = Boolean.parseBoolean(headerIterator.next()); statTransfer.fromStatBool = Boolean.parseBoolean(headerIterator.next());
statTransfer.toStatBool = Boolean.parseBoolean(headerIterator.next()); statTransfer.toStatBool = Boolean.parseBoolean(headerIterator.next());
statTransfer.transfer_action = headerIterator.next(); statTransfer.transfer_action = headerIterator.next();
statTransfer.tranfer_ticks = Integer.parseInt(headerIterator.next()); statTransfer.transfer_ticks = Integer.parseInt(headerIterator.next());
powerActionEntry.statTransfer = statTransfer; powerActionEntry.statTransfer = statTransfer;
break; break;
case "Charm": case "Charm":
+1 -1
View File
@@ -20,5 +20,5 @@ public class StatTransfer {
public boolean fromStatBool; public boolean fromStatBool;
public boolean toStatBool; public boolean toStatBool;
public String transfer_action; public String transfer_action;
public int tranfer_ticks; public int transfer_ticks;
} }