Merge pull request #8 from mcmonkey819/mcmonkey819/raid-name-fix

Fix raid event name
This commit is contained in:
Onyx and Iris 2024-11-06 16:56:08 +00:00 committed by GitHub
commit db5e992fb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ class Client:
self.sio.on("disconnect", self.disconnect_handler) self.sio.on("disconnect", self.disconnect_handler)
self.obs = Observable() self.obs = Observable()
self.streamlabs = ("donation",) self.streamlabs = ("donation",)
self.twitch = ("follow", "subscription", "host", "bits", "raids") self.twitch = ("follow", "subscription", "host", "bits", "raid")
self.youtube = ("follow", "subscription", "superchat") self.youtube = ("follow", "subscription", "superchat")
def __enter__(self): def __enter__(self):