From 223d45416d0f5e3a7bde256a27f0146c1b989e59 Mon Sep 17 00:00:00 2001 From: Conatum Date: Thu, 6 Jan 2022 09:33:14 +0200 Subject: [PATCH] fix (utils): Typo in `embed_reply` error handling. --- bot/utils/ctx_addons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/utils/ctx_addons.py b/bot/utils/ctx_addons.py index 9697eeec..1a01139c 100644 --- a/bot/utils/ctx_addons.py +++ b/bot/utils/ctx_addons.py @@ -20,7 +20,7 @@ async def embed_reply(ctx, desc, colour=discord.Colour.orange(), **kwargs): try: return await ctx.reply(embed=embed, reference=ctx.msg.to_reference(fail_if_not_exists=False)) except discord.Forbidden: - if not ctx.guild or ctx.ch.permissions_for(ctx.guild.me).send_mssages: + if not ctx.guild or ctx.ch.permissions_for(ctx.guild.me).send_messages: await ctx.reply("Command failed, I don't have permission to send embeds in this channel!") raise SafeCancellation