From 2d8d2a43605ba31aea47e09cff33a2f785d73581 Mon Sep 17 00:00:00 2001 From: firestar5683 <168790843+firestar5683@users.noreply.github.com> Date: Thu, 12 Feb 2026 15:33:39 -0600 Subject: [PATCH] malibu hybrid no ev --- frogpilot/common/frogpilot_variables.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frogpilot/common/frogpilot_variables.py b/frogpilot/common/frogpilot_variables.py index 30ee41745..2355b651f 100644 --- a/frogpilot/common/frogpilot_variables.py +++ b/frogpilot/common/frogpilot_variables.py @@ -630,7 +630,10 @@ class FrogPilotVariables: toggle.use_custom_steerRatio = bool(round(toggle.steerRatio, 2) != round(steerRatio, 2)) and not toggle.force_auto_tune or toggle.force_auto_tune_off advanced_longitudinal_tuning = params.get_bool("AdvancedLongitudinalTune") if tuning_level >= level["AdvancedLongitudinalTune"] else default.get_bool("AdvancedLongitudinalTune") - ev_vehicle = toggle.car_make == "gm" and not (toggle.car_model.startswith("CHEVROLET_VOLT") and not toggle.car_model.endswith("_CC")) and CP.carFingerprint in GM_EV_CAR or toggle.car_make == "hyundai" and CP.carFingerprint in HYUNDAI_EV_CAR + gm_ev_vehicle = toggle.car_make == "gm" and CP.carFingerprint in GM_EV_CAR + gm_ev_vehicle &= not (toggle.car_model.startswith("CHEVROLET_VOLT") and not toggle.car_model.endswith("_CC")) + gm_ev_vehicle &= toggle.car_model != "CHEVROLET_MALIBU_HYBRID_CC" + ev_vehicle = gm_ev_vehicle or (toggle.car_make == "hyundai" and CP.carFingerprint in HYUNDAI_EV_CAR) ev_vehicle |= CP.transmissionType == TransmissionType.direct if params.get("EVTuning") == b"":