Patched Twitch_Setup_Dialog trying to join Chat Early

A return may or may not have been forgotten to stop early joining chat.
This commit is contained in:
Eroax 2024-01-22 20:04:52 -07:00
parent 21c9e43978
commit 5feb293bdf

View file

@ -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: 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) Connections.twitch.setup_chat_connection(%Default_Chat.text)
return
Connections.twitch.join_channel(%Default_Chat.text) Connections.twitch.join_channel(%Default_Chat.text)