diff options
Diffstat (limited to '')
-rw-r--r-- | cogs/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/admin.py b/cogs/admin.py index 3cb7ff8..d722390 100644 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -24,7 +24,7 @@ class Admin(commands.Cog): @commands.check(is_mod) async def forceexit(self, ctx, password): if password == "abort": - ctx.message.delete() + await ctx.message.delete() exit() @commands.command() |