diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATShiftStrategy.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATShiftStrategy.cs index 59c9b16a6a1d98397424fe65f1cbfdc17f5f16fa..87a05b118fdb2fa0392125f3b1a4b313b2d8743b 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATShiftStrategy.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATShiftStrategy.cs @@ -196,7 +196,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl Second absTime, NewtonMeter outTorque, PerSecond outAngularVelocity, PerSecond inAngularVelocity, GearshiftPosition gear) { // Emergency Downshift: if lower than engine idle speed - if (inAngularVelocity.IsSmaller(DataBus.EngineInfo.EngineIdleSpeed)) { + if (inAngularVelocity.IsSmaller(DataBus.EngineInfo.EngineIdleSpeed) && Gears.HasPredecessor(gear)) { Log.Debug("engine speed would fall below idle speed - shift down"); Downshift(absTime, gear); return true;