From c19a86508ee8e38babb3bd306bda7cf3581269a2 Mon Sep 17 00:00:00 2001 From: Dorian Lesbre Date: Wed, 3 Jun 2026 17:06:41 +0200 Subject: [PATCH] Engine thrust units --- Source/Engines/UI/EngineConfigGUI.cs | 4 ++++ 1 file changed, 4 insertions(+) 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"; }