summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-08-19 21:03:14 +0200
committermetamuffin <metamuffin@disroot.org>2024-08-20 13:00:23 +0200
commitb3b780c85d16153c9afa2183e961061752f28b50 (patch)
tree418cb374ca9a89383442b41162d673bdb3fe1966
parent312f5e017163b2622b3ea328cd44fc946d0efe8e (diff)
downloadhurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar
hurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar.bz2
hurrycurry-b3b780c85d16153c9afa2183e961061752f28b50.tar.zst
disable tls because godot is broken
-rw-r--r--client/menu/play.gd3
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)