Skip to content

Commit

Permalink
Clarify the avionics permanent shutdown message
Browse files Browse the repository at this point in the history
  • Loading branch information
siimav committed Sep 24, 2024
1 parent 50432f7 commit 033a317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RP0/Avionics/ModuleAvionics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 033a317

Please sign in to comment.