diff --git a/src/cogs/gay_meter.py b/src/cogs/gay_meter.py index 5ed7a59..608f6c5 100644 --- a/src/cogs/gay_meter.py +++ b/src/cogs/gay_meter.py @@ -17,12 +17,13 @@ class MeterCog(commands.Cog): """Checks how gay someone is""" user = user or ctx.user + await ctx.respond("Calculating...") for i in range(0, 125, 25): - await ctx.respond("Calculating... %d%%" % i) + await ctx.edit(content="Calculating... %d%%" % i) await asyncio.sleep(random.randint(1, 30) / 10) pct = user.id % 100 - await ctx.respond(f"{user.mention} is {pct}% gay.") + await ctx.edit(content=f"{user.mention} is {pct}% gay.") @commands.slash_command(name="penis-length") async def penis_meter(self, ctx: discord.ApplicationContext, user: discord.User = None):