From 3da8b579a4d9efceb0ffcc87ddf196eda7013405 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Thu, 3 May 2018 15:03:15 -0800 Subject: [PATCH] explode --- exts/fun.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exts/fun.py b/exts/fun.py index cee0e06..ba4839d 100644 --- a/exts/fun.py +++ b/exts/fun.py @@ -153,9 +153,9 @@ class Fun: trans = await self.bot.db_con.fetchval('select code from geeksbot_emojis where id = 405943174809255956') msg = await ctx.send(f'{member.mention}{trans*20}{self.bot.unicode_emojis["left_fist"]}') - for i in range(19, 0): + for i in range(20): await asyncio.sleep(0.1) - await msg.edit(content=f'{member.mention}{trans*i}{self.bot.unicode_emojis["left_fist"]}') + await msg.edit(content=f'{member.mention}{trans*(20-i)}{self.bot.unicode_emojis["left_fist"]}') await asyncio.sleep(0.1) await msg.edit(content=f'{self.bot.unicode_emojis["boom"]}')