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 874405e + 7d04839 commit 6ac96f9Copy full SHA for 6ac96f9
Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs
@@ -2156,10 +2156,13 @@ public override void Update(float elapsedClockSeconds)
2156
2157
// if train is a geared locomotive then set it to automatic operation as AI driver can't operate manual gearboxes
2158
if (de.GearBox != null)
2159
+ {
2160
de.GearBox.GearBoxOperation = GearBoxOperation.Automatic;
2161
- // Set gear to "low gear" at start.
2162
- de.GearBox.currentGearIndex = de.GearBox.NumOfGears - 1;
+ // Set gear to at start.
2163
+ de.GearBox.currentGearIndex = de.GearBox.NumOfGears - 1;
2164
+ }
2165
+
2166
}
2167
2168
0 commit comments