Skip to content

Commit

Permalink
Allow Multiple Accounts (#16)
Browse files Browse the repository at this point in the history
A bit odd how this is a CVar, but whatever.
  • Loading branch information
DEATHB4DEFEAT authored Dec 30, 2024
1 parent d513850 commit b950f51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SS14.Launcher/Models/Data/CVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static readonly CVarDef<bool> HasDismissedEarlyAccessWarning
/// <summary>
/// Enable multi-account support on release builds.
/// </summary>
public static readonly CVarDef<bool> MultiAccounts = CVarDef.Create("MultiAccounts", false);
public static readonly CVarDef<bool> MultiAccounts = CVarDef.Create("MultiAccounts", true);

/// <summary>
/// Currently selected login in the drop down.
Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher/Models/Data/DataManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public Guid? SelectedLoginId
#if DEBUG
true;
#else
GetCVar(CVars.MultiAccounts);
GetCVar(CVars.MultiAccounts);
#endif

public void AddFavoriteServer(FavoriteServer server)
Expand Down

0 comments on commit b950f51

Please sign in to comment.