From 55d2e382ea3e08a9ff67faccd2d9bb3ea111178d Mon Sep 17 00:00:00 2001 From: Clayell <125416952+Clayell@users.noreply.github.com> Date: Thu, 6 Feb 2025 21:52:22 -0500 Subject: [PATCH] change default height above atmosphere orbit to be 5000 instead of 20000 if we already tell the user what the minimum value is, then we dont need to set them so high above the atmosphere, as this could just be confusing. 5000 is more than high enough to counteract principia shenanigans, while still allowing the user to be in a low orbit by default --- Source/RP0/UI/KCT/GUI_Simulation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RP0/UI/KCT/GUI_Simulation.cs b/Source/RP0/UI/KCT/GUI_Simulation.cs index e420bc4903..fbfbf499c6 100644 --- a/Source/RP0/UI/KCT/GUI_Simulation.cs +++ b/Source/RP0/UI/KCT/GUI_Simulation.cs @@ -344,7 +344,7 @@ private static double EnsureSafeMaxAltitude(double altitudeMeters, CelestialBody private static double GetDefaultAltitudeForBody(CelestialBody body) { - return body.atmosphere ? body.atmosphereDepth + 20010 : 20000; + return body.atmosphere ? body.atmosphereDepth + 5000 : 20000; } } }