From 679975f9df810df57baf5a0c993a986251385a28 Mon Sep 17 00:00:00 2001 From: Myned Date: Sun, 10 Dec 2017 17:14:49 -0500 Subject: [PATCH] Increased hearting timeout to 1 hour --- src/cogs/booru.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cogs/booru.py b/src/cogs/booru.py index 555f684..71d0115 100644 --- a/src/cogs/booru.py +++ b/src/cogs/booru.py @@ -142,8 +142,8 @@ class MsG: while self.hearting: try: - await asyncio.gather(*[self.bot.wait_for('reaction_add', check=on_reaction, timeout=7 * 60), - self.bot.wait_for('reaction_remove', check=on_reaction, timeout=7 * 60)]) + await asyncio.gather(*[self.bot.wait_for('reaction_add', check=on_reaction, timeout=60 * 60), + self.bot.wait_for('reaction_remove', check=on_reaction, timeout=60 * 60)]) except exc.Save as e: await self.heartqueue.put((e.user, send))