Skip to content

Commit

Permalink
Use prod hostname for server connections
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmine committed Jun 13, 2021
1 parent f15ec63 commit 1d1149f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Celeste_Launcher_Gui/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ public enum PortMappingType
[XmlRoot(ElementName = "Celeste_Launcher_Gui_Config")]
public class UserConfig
{
[DefaultValue("wss://ns544971.ip-66-70-180.net:4513/")]
[DefaultValue("wss://prod.projectceleste.com:4513/")]
[XmlElement(ElementName = "ServerUri")]
public string ServerUri { get; set; } = "wss://ns544971.ip-66-70-180.net:4513/";
public string ServerUri { get; set; } = "wss://prod.projectceleste.com:4513/";

[XmlElement(ElementName = "GameFilesPath")]
public string GameFilesPath { get; set; } = string.Empty;
Expand Down

0 comments on commit 1d1149f

Please sign in to comment.