We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908f011 commit 434af02Copy full SHA for 434af02
Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Brakes/MSTS/AirSinglePipe.cs
@@ -363,7 +363,7 @@ public void UpdateTripleValveState(float elapsedClockSeconds)
363
TripleValveState = ValveState.Release;
364
else if (TripleValveState != ValveState.Emergency && targetPressurePSI > AutoCylPressurePSI + (TripleValveState != ValveState.Apply ? 2.2f : 0f))
365
TripleValveState = ValveState.Apply;
366
- else
+ else if (TripleValveState != ValveState.Emergency)
367
TripleValveState = ValveState.Lap;
368
}
369
else if (valveType == MSTSWagon.BrakeValveType.TripleValve || valveType == MSTSWagon.BrakeValveType.DistributingValve)
0 commit comments