File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Source/Orts.Simulation/Simulation/RollingStocks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2750,7 +2750,7 @@ protected virtual void UpdateTractiveForce(float elapsedClockSeconds)
27502750 }
27512751 else if ( SlipControlSystem == SlipControlType . CutPower )
27522752 {
2753- if ( ! DynamicBrake )
2753+ if ( axle . DriveForceN != 0 )
27542754 {
27552755 if ( axle . HuDIsWheelSlip ) SlipControlActive [ i ] = true ;
27562756 }
@@ -2764,7 +2764,7 @@ protected virtual void UpdateTractiveForce(float elapsedClockSeconds)
27642764 }
27652765 else if ( SlipControlSystem == SlipControlType . ReduceForce )
27662766 {
2767- if ( ! DynamicBrake && axle . DriveForceN != 0 && AdvancedAdhesionModel )
2767+ if ( axle . DriveForceN != 0 && ( AdvancedAdhesionModel || ! AntiSlip ) )
27682768 {
27692769 if ( axle . SlipPercent > axle . SlipWarningTresholdPercent ) SlipControlActive [ i ] = true ;
27702770 }
You can’t perform that action at this time.
0 commit comments