From 844d816808bbd8fb95f53bc6be48fde53765034e Mon Sep 17 00:00:00 2001 From: Crowthebird <78076854+thatbirdguythatuknownot@users.noreply.github.com> Date: Wed, 1 Apr 2026 12:45:47 -0400 Subject: [PATCH] Levels: free the bots from its social restrictions Role privileges should not be human-only --- bot/exts/levels/_cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/levels/_cog.py b/bot/exts/levels/_cog.py index abdd3b1..198a2c9 100644 --- a/bot/exts/levels/_cog.py +++ b/bot/exts/levels/_cog.py @@ -203,7 +203,7 @@ async def on_message(self, msg: discord.Message) -> None: """Listens to messages and checks against active message rules.""" if not await self.running.get("value", False): return - if msg.channel.id not in ALLOWED_CHANNELS or msg.author.bot: + if msg.channel.id not in ALLOWED_CHANNELS: return if len(self.active_message_rule_triggers) == 0: return