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.
2 parents b930903 + 4042b59 commit c2ac0c5Copy full SHA for c2ac0c5
Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Controllers/MSTSBrakeController.cs
@@ -59,7 +59,8 @@ public override void Initialize()
59
public override void InitializeMoving()
60
{
61
NotchController.SetValue(0);
62
- NotchController.CurrentNotch = 0;
+ if (NotchController.NotchCount() > 0) NotchController.CurrentNotch = 0;
63
+ else NotchController.CurrentNotch = -1;
64
}
65
66
public override float Update(float elapsedSeconds)
0 commit comments