More poweraction parsing work.
This commit is contained in:
@@ -117,9 +117,9 @@ public class PowerActionParser {
|
|||||||
statTransfer = new StatTransfer();
|
statTransfer = new StatTransfer();
|
||||||
statTransfer.fromStat = mbEnums.CostType.valueOf(headerIterator.next());
|
statTransfer.fromStat = mbEnums.CostType.valueOf(headerIterator.next());
|
||||||
statTransfer.toStat = mbEnums.CostType.valueOf(headerIterator.next());
|
statTransfer.toStat = mbEnums.CostType.valueOf(headerIterator.next());
|
||||||
statTransfer.fromStatValue = Integer.parseInt(headerIterator.next());
|
statTransfer.fromStatValue = Float.parseFloat(headerIterator.next());
|
||||||
statTransfer.fromCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next());
|
statTransfer.fromCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next());
|
||||||
statTransfer.toStatValue = Integer.parseInt(headerIterator.next());
|
statTransfer.toStatValue = Float.parseFloat(headerIterator.next());
|
||||||
statTransfer.toCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next());
|
statTransfer.toCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next());
|
||||||
statTransfer.fromStatBool = Boolean.parseBoolean(headerIterator.next());
|
statTransfer.fromStatBool = Boolean.parseBoolean(headerIterator.next());
|
||||||
statTransfer.toStatBool = Boolean.parseBoolean(headerIterator.next());
|
statTransfer.toStatBool = Boolean.parseBoolean(headerIterator.next());
|
||||||
|
|||||||
Reference in New Issue
Block a user