From a9a4f34c841996970f488eb3b858837d10ffba40 Mon Sep 17 00:00:00 2001 From: issork Date: Thu, 11 May 2023 13:39:49 +0200 Subject: [PATCH] updated eventsub url --- addons/gift/gift_node.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/gift/gift_node.gd b/addons/gift/gift_node.gd index a66ce16..8270a99 100644 --- a/addons/gift/gift_node.gd +++ b/addons/gift/gift_node.gd @@ -368,7 +368,7 @@ func connect_to_irc() -> bool: return success # Connect to Twitch EventSub. Make sure to authenticate first. -func connect_to_eventsub(url : String = "wss://eventsub-beta.wss.twitch.tv/ws") -> void: +func connect_to_eventsub(url : String = "wss://eventsub.wss.twitch.tv/ws") -> void: eventsub = WebSocketPeer.new() eventsub.connect_to_url(url) print("Connecting to Twitch EventSub.")