From 37ac796c625b78cd1169b680a1fb5ec73a23f325 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 3 May 2021 01:07:17 -0400 Subject: [PATCH] Change update time to one hour --- ahtcg_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahtcg_bot.py b/ahtcg_bot.py index b6d5767..5929a2f 100755 --- a/ahtcg_bot.py +++ b/ahtcg_bot.py @@ -121,7 +121,7 @@ class ArkhamDBUpdater(commands.Bot): if after.channel.id in self.channel_list: await self.update_channel_latest_decks(after.channel) - @tasks.loop(seconds=20) + @tasks.loop(hours=1) async def arkhamdb_monitor(self) -> None: for channel_id in self.channel_list: channel = self.get_channel(channel_id)