diff options
| -rw-r--r-- | metricity/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metricity/bot.py b/metricity/bot.py index 84ee05b..476404e 100644 --- a/metricity/bot.py +++ b/metricity/bot.py @@ -248,7 +248,7 @@ async def on_message(message: DiscordMessage) -> None: created_at=message.created_at ) - if message.channel.id in BotConfig.bot_commands_channel: + if message.channel.id == BotConfig.bot_commands_channel: await bot.process_commands(message) |