From 4488407e4c16ef877596fc8299ccce717bb32995 Mon Sep 17 00:00:00 2001
From: "VKMTHD\\haraldmartini" <harald.martini@student.tugraz.at>
Date: Mon, 8 May 2023 11:13:06 +0200
Subject: [PATCH] only check for low engine speed in hybridstragy handlebrake
 if the engine is on

---
 .../Models/SimulationComponent/Strategies/HybridStrategy.cs     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs b/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs
index 5b55095322..58712dc4cc 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Strategies/HybridStrategy.cs
@@ -911,7 +911,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Strategies
 
 			var endSpeed = DataBus.VehicleInfo.VehicleSpeed +
 							DataBus.DriverInfo.DriverAcceleration * ModelData.GearboxData.TractionInterruption;
-			if (EngineSpeedTooLow(response)
+			if (EngineSpeedTooLow(response) && DataBus.EngineInfo.EngineOn
 				&& (DataBus.GearboxInfo.GearboxType.ManualTransmission() ||
 					DataBus.GearboxInfo.GearboxType == GearboxType.IHPC)
 				&& endSpeed.IsSmallerOrEqual(disengageSpeedThreshold, 0.1.KMPHtoMeterPerSecond())) {
-- 
GitLab