From 3c0562e5ec27593958740f0e5b722a9183855dd4 Mon Sep 17 00:00:00 2001 From: mcmonkey819 <59832480+mcmonkey819@users.noreply.github.com> Date: Wed, 6 Nov 2024 09:45:14 -0500 Subject: [PATCH] Fix raid event name --- streamlabsio/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamlabsio/client.py b/streamlabsio/client.py index 45488be..55a43f4 100644 --- a/streamlabsio/client.py +++ b/streamlabsio/client.py @@ -22,7 +22,7 @@ class Client: self.sio.on("disconnect", self.disconnect_handler) self.obs = Observable() self.streamlabs = ("donation",) - self.twitch = ("follow", "subscription", "host", "bits", "raids") + self.twitch = ("follow", "subscription", "host", "bits", "raid") self.youtube = ("follow", "subscription", "superchat") def __enter__(self):