diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-19 21:03:14 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-20 13:00:23 +0200 |
commit | b3b780c85d16153c9afa2183e961061752f28b50 (patch) | |
tree | 418cb374ca9a89383442b41162d673bdb3fe1966 | |
parent | 312f5e017163b2622b3ea328cd44fc946d0efe8e (diff) | |
download | hurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar hurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar.bz2 hurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar.zst |
disable tls because godot is broken
-rw-r--r-- | client/menu/play.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/menu/play.gd b/client/menu/play.gd index 61b777d1..266cd1a3 100644 --- a/client/menu/play.gd +++ b/client/menu/play.gd @@ -57,7 +57,8 @@ func _on_quick_connect_pressed(): : `ws://${window.location.hostname}:27032/` """)) else: - connect_to("wss://hurrycurry.metamuffin.org/") + # TODO enable wss once godot is fixed + connect_to("ws://hurrycurry.metamuffin.org/") func connect_to(url: String): print("Connecting to %s" % url) |