From 033a3170ce0e9a31623fca6d7191d141fcab9671 Mon Sep 17 00:00:00 2001 From: siimav Date: Wed, 25 Sep 2024 00:38:34 +0300 Subject: [PATCH] Clarify the avionics permanent shutdown message --- 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 fea79f7fa63..59e73741e11 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.", "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 either. Note that disabling the last avionics unit on the vessel will also disable all communications.", "Disable Avionics", HighLogic.UISkin, 300, options); PopupDialog.SpawnPopupDialog(dialog, true, HighLogic.UISkin); }