diff --git a/Source/Engines/SolverRF.cs b/Source/Engines/SolverRF.cs index dff50c81..6dc18873 100644 --- a/Source/Engines/SolverRF.cs +++ b/Source/Engines/SolverRF.cs @@ -269,7 +269,7 @@ public override void CalculatePerformance(double airRatio, double commandedThrot if (velCurveIsp != null) ispOtherMult *= velCurveIsp.Evaluate((float)mach); if (throttleIspCurve != null) - ispOtherMult *= Mathf.Lerp(1f, throttleIspCurve.Evaluate(commandedThrottle), + ispOtherMult *= Mathf.Lerp(1f, throttleIspCurve.Evaluate((float)commandedThrottle), throttleIspCurveAtmStrength.Evaluate(pressureAtm)); if (HighLogic.LoadedSceneIsFlight && varyIsp > 0d && fuelFlow > 0d)