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.
1 parent eb9c601 commit 4148beaCopy full SHA for 4148bea
Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/PowerSupplies/DieselEngine.cs
@@ -997,6 +997,11 @@ public void Copy(DieselEngine other)
997
998
public void Initialize()
999
{
1000
+ if (!Simulator.Settings.NoDieselEngineStart)
1001
+ {
1002
+ RealRPM = IdleRPM;
1003
+ State = DieselEngineState.Running;
1004
+ }
1005
RPMRange = MaxRPM - IdleRPM;
1006
MagnitudeRange = MaxMagnitude - InitialMagnitude;
1007
ExhaustRange = MaxExhaust - InitialExhaust;
0 commit comments