From 5f7d80849f67fb2f0b3f22fa413e9f9eb11db555 Mon Sep 17 00:00:00 2001 From: Clayell <125416952+Clayell@users.noreply.github.com> Date: Sun, 17 Nov 2024 22:30:57 -0500 Subject: [PATCH] Make permanently disable avionics info EVEN more clarified (#2456) * Update RFTechLevels.cfg * Update EarlyComNetwork3-CA.cfg * Update FirstMolniyaSat-CA.cfg make AOP more clear and in line with the objectives that state it must be between 220 and 320 * Update Programs.cfg make it more clear on the reasoning behind upgrading AC to 3 * scale molniya reward by 10 to make rep and confidence more in line with normal com sat contracts * Update EarlyMolniyaSat.cfg * Update EarlyMolniyaSat.cfg * Update Programs.cfg add reminder to train crew a year before launch (proficiency takes about a year) * Update EarlyComSat-CA.cfg * Update EarlyNavSat-CA.cfg the description implied that a network was being made, which is incorrect i adapted the description from the commercial repeatable * Update SXT.json the mk-10 is the set of 3 balloons, the mk10-xl is the single large balloon * Update SXT.json * Update SXT.json * remove redundant wording * add tree part for tracking station 11 * Update ModuleAvionics.cs * Update ModuleAvionics.cs --- Source/RP0/Avionics/ModuleAvionics.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RP0/Avionics/ModuleAvionics.cs b/Source/RP0/Avionics/ModuleAvionics.cs index 30f3518980..4aa9ad161a 100644 --- a/Source/RP0/Avionics/ModuleAvionics.cs +++ b/Source/RP0/Avionics/ModuleAvionics.cs @@ -359,7 +359,7 @@ public void KillEvent() new DialogGUIButton("Yes", () => KillAction(null)), new DialogGUIButton("No", () => {}) }; - var dialog = new MultiOptionDialog("ConfirmDisableAvionics", "Are you sure you want to permanently disable the avionics unit? Doing this will prevent avionics from consuming power but it will no longer provide any control either. Note that disabling the last avionics unit on the vessel will also disable all communications.", "Disable Avionics", HighLogic.UISkin, 300, options); + var dialog = new MultiOptionDialog("ConfirmDisableAvionics", "Are you sure you want to permanently disable the avionics unit? Doing this will prevent avionics from consuming power but it will no longer provide any control nor use its internal antenna. Note that disabling the last avionics unit on the vessel will also disable all antennas. (internal and external, ingoing and outgoing)", "Disable Avionics", HighLogic.UISkin, 300, options); PopupDialog.SpawnPopupDialog(dialog, true, HighLogic.UISkin); }