Added an option to respawn directly in the main sub

This commit is contained in:
juanjp600
2017-12-05 03:03:37 -03:00
parent e69e316f6b
commit c6ca3572ba
6 changed files with 121 additions and 52 deletions
@@ -9,6 +9,7 @@ namespace Barotrauma
{
private Submarine selectedSub;
private Submarine selectedShuttle;
private bool usingShuttle = true;
public Submarine SelectedSub
{
@@ -20,6 +21,11 @@ namespace Barotrauma
get { return selectedShuttle; }
set { selectedShuttle = value; lastUpdateID++; }
}
public bool UsingShuttle
{
get { return usingShuttle; }
set { usingShuttle = value; lastUpdateID++; }
}
private GameModePreset[] gameModes;
public GameModePreset[] GameModes