Change update time to one hour

This commit is contained in:
Adam Goldsmith 2021-05-03 01:07:17 -04:00
parent 81a083618d
commit 37ac796c62
1 changed files with 1 additions and 1 deletions

View File

@ -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)