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.
13 parents 3e68613 + f9e80b9 + b54024b + 1f5ba4c + ffccb2e + 1ade99e + 6a89a97 + 31fd7d2 + 34aa23a + eb8027b + 626ebed + d1a56b3 + f1681df commit 5d5faa2Copy full SHA for 5d5faa2
Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Brakes/MSTS/EPBrakeSystem.cs
@@ -134,8 +134,15 @@ public override void Update(float elapsedClockSeconds)
134
}
135
if (EPBrakeActiveInhibitsTripleValve)
136
{
137
- HoldingValve = ValveState.Release;
138
- IsolationValve = ValveState.Lap;
+ if (TripleValveState != ValveState.Emergency)
+ {
139
+ HoldingValve = ValveState.Release;
140
+ IsolationValve = ValveState.Lap;
141
+ }
142
+ else
143
144
+ IsolationValve = ValveState.Release;
145
146
147
148
base.Update(elapsedClockSeconds); // Allow processing of other valid tokens
0 commit comments