From d489bdacedfa246059511fd5eac9e3c6180cccd6 Mon Sep 17 00:00:00 2001 From: Nicolas Ong Date: Fri, 29 Mar 2024 11:12:54 +0100 Subject: [PATCH] Setting the 'commands' flag to True If the user attached to the bot is admin, it should be allowed to pass commands. --- helpers/TwitchIrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/TwitchIrc.py b/helpers/TwitchIrc.py index baee688..127562a 100644 --- a/helpers/TwitchIrc.py +++ b/helpers/TwitchIrc.py @@ -10,7 +10,7 @@ class TwitchIrc: nickname = "" password = "" channel = "" - capabilities = {"membership": False, "tags": False, "commands": False} + capabilities = {"membership": False, "tags": False, "commands": True} def join(self, nickname, password, channel): self.nickname = nickname