Skip to content

Commit cef9253

Browse files
committed
Remove venting of MRP because conflicts with EOT
1 parent 76abf4e commit cef9253

File tree

1 file changed

+0
-8
lines changed
  • Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Brakes/MSTS

1 file changed

+0
-8
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Brakes/MSTS/AirSinglePipe.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -804,18 +804,10 @@ protected static void PropagateBrakeLinePressures(float elapsedClockSeconds, Tra
804804
if (!car.BrakeSystem.FrontBrakeHoseConnected && car.BrakeSystem.AngleCockAOpen)
805805
{
806806
car.BrakeSystem.BrakeLine1PressurePSI = Math.Max(car.BrakeSystem.BrakeLine1PressurePSI * (1 - trainPipeTimeVariationS / brakePipeTimeFactorS), 0);
807-
if (car.BrakeSystem.TwoPipes)
808-
{
809-
car.BrakeSystem.BrakeLine2PressurePSI = Math.Max(car.BrakeSystem.BrakeLine2PressurePSI * (1 - trainPipeTimeVariationS / brakePipeTimeFactorS), 0);
810-
}
811807
}
812808
if ((nextCar == null || !nextCar.BrakeSystem.FrontBrakeHoseConnected) && car.BrakeSystem.AngleCockBOpen)
813809
{
814810
car.BrakeSystem.BrakeLine1PressurePSI = Math.Max(car.BrakeSystem.BrakeLine1PressurePSI * (1 - trainPipeTimeVariationS / brakePipeTimeFactorS), 0);
815-
if (car.BrakeSystem.TwoPipes)
816-
{
817-
car.BrakeSystem.BrakeLine2PressurePSI = Math.Max(car.BrakeSystem.BrakeLine2PressurePSI * (1 - trainPipeTimeVariationS / brakePipeTimeFactorS), 0);
818-
}
819811
}
820812
}
821813
#if DEBUG_TRAIN_PIPE_LEAK

0 commit comments

Comments
 (0)