From cd7c979d106b4124d600e8f32e93a2eeb50898d3 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sun, 9 May 2021 09:58:00 -0400 Subject: [PATCH] Fix typo preventing reactive updates from working --- ahtcg_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahtcg_bot.py b/ahtcg_bot.py index 3666d0f..566a851 100755 --- a/ahtcg_bot.py +++ b/ahtcg_bot.py @@ -107,7 +107,7 @@ class ArkhamDBUpdater(commands.Bot): # don't to react to the bot's changes, and only update registered channels if message.author.id != self.user.id and \ message.channel.id in self.channel_list: - await self.update_channel_latest_decks(message) + await self.update_channel_latest_decks(message.channel) async def on_message(self, message: discord.Message): await self.process_commands(message)