From d48a46ce1106601cc4bf12da115453b7cccca2c7 Mon Sep 17 00:00:00 2001 From: Eroax Date: Mon, 22 Jan 2024 20:04:52 -0700 Subject: [PATCH] Patched Twitch_Setup_Dialog trying to join Chat Early A return may or may not have been forgotten to stop early joining chat. --- graph_node_renderer/twitch_setup_dialog.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/graph_node_renderer/twitch_setup_dialog.gd b/graph_node_renderer/twitch_setup_dialog.gd index 12b4adf..05d8dfe 100644 --- a/graph_node_renderer/twitch_setup_dialog.gd +++ b/graph_node_renderer/twitch_setup_dialog.gd @@ -45,6 +45,7 @@ func connect_to_chat(): if !Connections.twitch.get("chat_socket") or Connections.twitch.chat_socket.get_ready_state() != WebSocketPeer.STATE_OPEN: Connections.twitch.setup_chat_connection(%Default_Chat.text) + return Connections.twitch.join_channel(%Default_Chat.text)