diff --git a/firmware/controllers/algo/fuel_math.cpp b/firmware/controllers/algo/fuel_math.cpp index 5588ebd620..7f71731cfc 100644 --- a/firmware/controllers/algo/fuel_math.cpp +++ b/firmware/controllers/algo/fuel_math.cpp @@ -129,6 +129,8 @@ float getRunningFuel(float baseFuel) { correction *= engine->launchController.getFuelCoefficient(); #endif + correction *= getLimpManager()->getLimitingFuelCorrection(); + float runningFuel = baseFuel * correction; efiAssert(ObdCode::CUSTOM_ERR_ASSERT, !cisnan(runningFuel), "NaN runningFuel", 0);