diff --git a/Robust.Server/server_config.toml b/Robust.Server/server_config.toml index 44a50e58729..f68797bed3a 100644 --- a/Robust.Server/server_config.toml +++ b/Robust.Server/server_config.toml @@ -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* @@ -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/" diff --git a/Robust.Shared/Network/AuthManager.cs b/Robust.Shared/Network/AuthManager.cs index 2fcd2e1b8b5..9fa7d252125 100644 --- a/Robust.Shared/Network/AuthManager.cs +++ b/Robust.Shared/Network/AuthManager.cs @@ -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; }