We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29cde5 commit c19a865Copy full SHA for c19a865
1 file changed
Source/Engines/UI/EngineConfigGUI.cs
@@ -1106,6 +1106,10 @@ internal string GetThrustString(ConfigNode node)
1106
float thrust = _module.scale * _techLevels.ThrustTL(node.GetValue(_module.thrustRating), node);
1107
if (thrust >= 100f)
1108
return $"{thrust:N0} kN";
1109
+ if (thrust < 1e-3f)
1110
+ return $"{thrust * 1e6f:N0} mN";
1111
+ if (thrust < 0.01f)
1112
+ return $"{thrust * 1e3f:N0} N";
1113
return $"{thrust:N2} kN";
1114
}
1115
0 commit comments