Skip to content

Commit

Permalink
➿ Replace ctx.reply with ctx.send
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Nov 2, 2024
1 parent 5c672cc commit 92b6d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/events/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async def on_command_error(self, ctx: commands.Context, error: Exception):

if reason := errors.get(type(error)):
embed = Embed(title="G-HOOOOOOST", description=reason.format(self=self, error=error))
return await ctx.reply(embed=embed)
return await ctx.send(embed=embed)

embed = Embed(title="something spoooky happened 👻👻", description=f"```prolog\n{error}\n```")
return await ctx.reply(embed=embed)
return await ctx.send(embed=embed)

0 comments on commit 92b6d31

Please sign in to comment.