From 34966d4bcf8901229f7f4182ab8da152b259d809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sun, 11 Feb 2024 22:07:58 +0300 Subject: [PATCH] patch NoTwitch to add back an erroneously removed method --- addons/no_twitch/eventsub_socket.gd | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/addons/no_twitch/eventsub_socket.gd b/addons/no_twitch/eventsub_socket.gd index 1bed1ae..b83deb8 100644 --- a/addons/no_twitch/eventsub_socket.gd +++ b/addons/no_twitch/eventsub_socket.gd @@ -107,7 +107,10 @@ func data_received(packet : PackedByteArray): keepalive_timer = 0 - - print(info) + +func send_pong(pong): + + pong.metadata.message_type = "session_pong" + send_text(str(pong))