|
|
@ -436,12 +436,12 @@ public class WpakPowerManager { |
|
|
|
// These all have "SIVL" in the curve name suggesting
|
|
|
|
// These all have "SIVL" in the curve name suggesting
|
|
|
|
// interpolation between min max. Not something currently done.
|
|
|
|
// interpolation between min max. Not something currently done.
|
|
|
|
|
|
|
|
|
|
|
|
outData.first = modifierEntry.compoundCurveType.name().contains("SIVL") ? |
|
|
|
outData.first = modifierEntry.compoundCurveType.type.equals(mbEnums.ModificationType.MULTIPLY) ? |
|
|
|
modifierEntry.min * (1 + (modifierEntry.compoundCurveType.getValue() * rank)) : |
|
|
|
modifierEntry.min * (1 + (modifierEntry.compoundCurveType.getValue() * rank)) : |
|
|
|
modifierEntry.min + (modifierEntry.compoundCurveType.getValue() * rank); |
|
|
|
modifierEntry.min + (modifierEntry.compoundCurveType.getValue() * rank); |
|
|
|
|
|
|
|
|
|
|
|
if (modifierEntry.max != 0) |
|
|
|
if (modifierEntry.max != 0) |
|
|
|
outData.second = modifierEntry.compoundCurveType.name().contains("SIVL") ? |
|
|
|
outData.second = modifierEntry.compoundCurveType.type.equals(mbEnums.ModificationType.MULTIPLY) ? |
|
|
|
modifierEntry.max * (1 + (modifierEntry.compoundCurveType.getValue() * rank)) : |
|
|
|
modifierEntry.max * (1 + (modifierEntry.compoundCurveType.getValue() * rank)) : |
|
|
|
modifierEntry.max + (modifierEntry.compoundCurveType.getValue() * rank); |
|
|
|
modifierEntry.max + (modifierEntry.compoundCurveType.getValue() * rank); |
|
|
|
return outData; |
|
|
|
return outData; |
|
|
|