Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Source/Engines/UI/EngineConfigGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,8 @@ 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 < 0.01f || thrust > 100000f)
Comment thread
dlesbre marked this conversation as resolved.
Outdated
return KSPUtil.PrintSI(thrust * 1e3f, "N", 3);
return $"{thrust:N2} kN";
}

Expand Down