From 1df916f91ea233f94dd9d045cd8a0d9dcebb665c Mon Sep 17 00:00:00 2001 From: DevilXD Date: Wed, 17 May 2023 10:04:13 +0200 Subject: [PATCH] TEMPFIX: Disable the drops_enabled check --- twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitch.py b/twitch.py index 0594dad..5303e4a 100644 --- a/twitch.py +++ b/twitch.py @@ -1163,7 +1163,7 @@ class Twitch: # exit early if if ( not channel.online # stream is offline - or not channel.drops_enabled # drops aren't enabled + # or not channel.drops_enabled # drops aren't enabled # there's no game or it's not one of the games we've selected or (game := channel.game) is None or game not in self.wanted_games ):