Skip to content

Commit ed282a5

Browse files
committed
Correct small error
1 parent dbcdee0 commit ed282a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2972,7 +2972,7 @@ public virtual void UpdateFrictionCoefficient(float elapsedClockSeconds)
29722972
}
29732973
else
29742974
{
2975-
BaseFrictionCoefficientFactor = Math.Min((fog * 2.75e-4f + 0.6f), 0.8f); // If fog is less then 2km then it will impact friction, decrease adhesion to 60% (same as light rain transition)
2975+
BaseFrictionCoefficientFactor = Math.Min((fog * 2.75e-4f + 0.6f), 1.0f); // If fog is less then 2km then it will impact friction, decrease adhesion to 60% (same as light rain transition)
29762976
}
29772977
}
29782978
else // if not proportional to fog use fixed friction value approximately equal to default 0.33 (will vary if adhesion parameters set), thus factor will be 1.0 x friction coefficient of 0.33

0 commit comments

Comments
 (0)