diff options
author | 2019-04-22 01:41:17 +1000 | |
---|---|---|
committer | 2019-04-22 01:41:17 +1000 | |
commit | e2876cccfa051b9c66e9292edeb9251ff99ad147 (patch) | |
tree | beffcfb92a9632c63ff3ca45ac10432ed8f0888d | |
parent | Add prepare_db docstring. (diff) |
change counter to minute
-rw-r--r-- | bot/seasons/easter/egg_hunt/cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/easter/egg_hunt/cog.py b/bot/seasons/easter/egg_hunt/cog.py index bbbecd7f..c9e2dc18 100644 --- a/bot/seasons/easter/egg_hunt/cog.py +++ b/bot/seasons/easter/egg_hunt/cog.py @@ -295,7 +295,7 @@ class SuperEggMessage(EggMessage): return count = 4 for _ in range(count): - await asyncio.sleep(1) + await asyncio.sleep(60) embed = self.message.embeds[0] embed.set_footer(text=f"Finishing in {count} minutes.") try: |