diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-22 00:03:59 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-22 00:03:59 +0200 |
commit | 1b22f7b3cfcb02a9779f32c2132002208547407f (patch) | |
tree | 79cdfb603467f454e1cb1febf12214048aa2de2a | |
parent | 09bc7961d0c47c25b6cc4410ed1f36e8b4d18d22 (diff) | |
download | hurrycurry-1b22f7b3cfcb02a9779f32c2132002208547407f.tar hurrycurry-1b22f7b3cfcb02a9779f32c2132002208547407f.tar.bz2 hurrycurry-1b22f7b3cfcb02a9779f32c2132002208547407f.tar.zst |
re-enable tls for quick connect
-rw-r--r-- | client/menu/play.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/menu/play.gd b/client/menu/play.gd index 266cd1a3..61b777d1 100644 --- a/client/menu/play.gd +++ b/client/menu/play.gd @@ -57,8 +57,7 @@ func _on_quick_connect_pressed(): : `ws://${window.location.hostname}:27032/` """)) else: - # TODO enable wss once godot is fixed - connect_to("ws://hurrycurry.metamuffin.org/") + connect_to("wss://hurrycurry.metamuffin.org/") func connect_to(url: String): print("Connecting to %s" % url) |