diff --git a/cogs/events.py b/cogs/events.py index bf000e4..8dba6e2 100644 --- a/cogs/events.py +++ b/cogs/events.py @@ -468,7 +468,7 @@ class Events(commands.Cog): }, r"c(mon|ome on) jimmy": { "content": "IM TRYING" - } + }, } # Stop responding to any bots if message.author.bot is True: diff --git a/cogs/other.py b/cogs/other.py index 797fbb1..afd7ac0 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1085,8 +1085,11 @@ class OtherCog(commands.Cog): await ctx.edit(embed=embed) await ctx.channel.trigger_typing() embed.description = _desc + start = time.time() await ctx.edit(embed=embed, files=files) - await ctx.send() + end = time.time() + if (end - start) < 10: + await ctx.respond("*clearing typing*", delete_after=0.01) async def bgtask(): await asyncio.sleep(120.0)