Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Robust.Server/server_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tags = ""
# Must be in the form of an ss14:// or ss14s:// URI pointing to the status API.
server_url = ""
# Comma-separated list of URLs of hub servers to advertise to.
hub_urls = "https://hub.spacestation14.com/"
hub_urls = "https://hub.playss14.com/"

[build]
# *Absolutely all of these can be supplied using a "build.json" file*
Expand Down Expand Up @@ -98,5 +98,5 @@ hub_urls = "https://hub.spacestation14.com/"

# You should probably never EVER need to touch this, but if you need a custom auth server,
# (the auth server being the one which manages Space Station 14 accounts), you change it here.
# server = https://auth.spacestation14.com/
# server = "https://auth.playss14.com/"

2 changes: 1 addition & 1 deletion Robust.Shared/Network/AuthManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal interface IAuthManager

internal sealed class AuthManager : IAuthManager
{
public const string DefaultAuthServer = "https://auth.spacestation14.com/";
public const string DefaultAuthServer = "https://auth.playss14.com/";
public const string DefaultStarlightAPI = "https://starlight.network/"; // Starlight-edit

public NetUserId? UserId { get; set; }
Expand Down
Loading