More poweraction parsing work.

This commit is contained in:
2024-08-20 17:19:35 -04:00
parent 6ca5e46ef6
commit 0b5564267f
+3 -1
View File
@@ -225,7 +225,9 @@ public class PowerActionParser {
case "LEVELCAP": case "LEVELCAP":
arguments = lineValues[1].trim().split("\\s+"); arguments = lineValues[1].trim().split("\\s+");
powerActionEntry.levelCap = Integer.parseInt(arguments[0]); powerActionEntry.levelCap = Integer.parseInt(arguments[0]);
powerActionEntry.levelCurve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
if (arguments.length > 1) // Not all level caps have a curve
powerActionEntry.levelCurve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
break; break;
case "CLEARAGGRO": case "CLEARAGGRO":
powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim()); powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim());