Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.

Commit 840f03a

Browse files
committed
Disable crew in SSS.
1 parent 331cd5e commit 840f03a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ShipSaveSplicer/ShipSaveSplicer.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ private void Dummy() { }
5050
public void OnClick()
5151
{
5252
//figure out if mod+clicked
53-
includeCrew = GameSettings.MODIFIER_KEY.GetKey();
53+
//includeCrew = GameSettings.MODIFIER_KEY.GetKey(); //TODO: Reenable when fixed
54+
includeCrew = false;
5455
bool ctrlHeld = Input.GetKey(KeyCode.LeftControl);
5556

5657
if (Input.GetKey(KeyCode.LeftShift))
@@ -258,7 +259,8 @@ public void OpenImportWindow()
258259
options[i] = new DialogGUIButton(files[i].Split('/').Last(), () => { ImportVessel(files[select]); });
259260
}
260261
options[count] = new DialogGUIButton("Close", Dummy);
261-
string msg = "Select a vessel to import. Will "+(includeCrew ? "" : "not ")+"import crew members."+(includeCrew ? "": " (modifier+click the SSS button to include crew)");
262+
string msg = "Select a vessel to import. Will " + (includeCrew ? "" : "not ") + "import crew members.";// +(includeCrew ? "": " (modifier+click the SSS button to include crew)");
263+
//TODO: Reenable when fixed
262264

263265
MultiOptionDialog a = new MultiOptionDialog(msg, "Import Vessel", null, options);
264266
PopupDialog.SpawnPopupDialog(new Vector2(0.5f, 0.5f), new Vector2(0.5f, 0.5f), a, false, HighLogic.UISkin);

0 commit comments

Comments
 (0)