We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c132b commit 1ade99eCopy full SHA for 1ade99e
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