Set curve names properly

This commit is contained in:
2024-11-30 09:57:04 -05:00
parent 92db9e1086
commit f410fc5482
6 changed files with 22 additions and 22 deletions
@@ -28,8 +28,8 @@ public class CharmPowerAction extends AbstractPowerAction {
public CharmPowerAction(PowerAction powerAction) {
super(powerAction);
this.levelCap = powerAction.levelCap;
this.levelCapRamp = powerAction.levelCurve.ordinal();
this.levelCap = powerAction.ramp;
this.levelCapRamp = powerAction.rampCurve.ordinal();
}
@Override