From 02554c9efda634affe0e114bb8cf645f40ec2937 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 28 Jul 2020 23:27:37 +0100 Subject: [PATCH] Making missing permissions command an embed --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c138d297..6ca1d9de 100644 --- a/main.py +++ b/main.py @@ -354,7 +354,7 @@ async def on_bot_forbidden(ctx, args2): missing_perms = string.capwords(", ".join(args2.missing_perms).replace("_", " ")) # Send an error message to the user notifying them of the permissions that are missing from the bot - embed = Embed(description="I Need **{}** Permission(s) to Execute This Command! ❌".format(missing_perms)) + embed = Embed(description="❌ I Need **{}** Permission(s) to Execute This Command! ❌".format(missing_perms)) await ctx.send(embed=embed)