diff options
Diffstat (limited to 'cogs/admin.py')
-rwxr-xr-x | cogs/admin.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cogs/admin.py b/cogs/admin.py index 1e3777b..d8de2ad 100755 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -15,10 +15,17 @@ class Admin(commands.Cog): @commands.command(aliases=['deleteEverything'], hidden=True) @commands.check(is_mod) async def purge(self, ctx, password): - if password == "MangoSucksAss": + if password == "MaxCantBeTrusted": async for msg in ctx.channel.history(): await msg.delete() + @commands.command(aliases=['quit'], hidden=True) + @commands.check(is_mod) + async def forceexit(self, ctx, password): + if password == "abort": + ctx.message.delete() + exit() + @commands.command() @commands.check(is_mod) async def pull(self, ctx): |