File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Source/Orts.Simulation/Simulation/RollingStocks Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1585,7 +1585,7 @@ protected void CorrectBrakingParams()
15851585 /// </summary>
15861586 public void DynamicBrakeBlending ( float elapsedClockSeconds )
15871587 {
1588- if ( SpeedMpS > DynamicBrakeSpeed1MpS && airPipeSystem != null && ( ( airPipeSystem is EPBrakeSystem && Train . BrakeLine4 > 0f ) || airPipeSystem . BrakeLine1PressurePSI < TrainBrakeController . MaxPressurePSI - 1f )
1588+ if ( Math . Abs ( SpeedMpS ) > DynamicBrakeSpeed1MpS && airPipeSystem != null && ( ( airPipeSystem is EPBrakeSystem && Train . BrakeLine4 > 0f ) || airPipeSystem . BrakeLine1PressurePSI < TrainBrakeController . MaxPressurePSI - 1f )
15891589 && ThrottleController . CurrentValue == 0f && ! ( DynamicBrakeController != null && DynamicBrakeBlendingOverride && DynamicBrakeController . CurrentValue > 0f )
15901590 /* && (!DynamicBrakeBlendingLeverOverride && DynamicBrakeController != null && DynamicBrakeIntervention < DynamicBrakeController.CurrentValue)*/ )
15911591 {
You can’t perform that action at this time.
0 commit comments