diff --git a/Source/Engines/UI/EngineConfigGUI.cs b/Source/Engines/UI/EngineConfigGUI.cs index abe8e6fc..c31704bf 100644 --- a/Source/Engines/UI/EngineConfigGUI.cs +++ b/Source/Engines/UI/EngineConfigGUI.cs @@ -1106,6 +1106,10 @@ internal string GetThrustString(ConfigNode node) float thrust = _module.scale * _techLevels.ThrustTL(node.GetValue(_module.thrustRating), node); if (thrust >= 100f) return $"{thrust:N0} kN"; + if (thrust < 1e-3f) + return $"{thrust * 1e6f:N0} mN"; + if (thrust < 0.01f) + return $"{thrust * 1e3f:N0} N"; return $"{thrust:N2} kN"; }