diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-05-29 12:49:39 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-05-29 12:49:39 +0000 |
commit | 03ad084f5640dd24212e3488d6789d9c691da8d8 (patch) | |
tree | 245d011f192a121d1ae858fc198d46eba8015225 /cogs/admin.py | |
parent | 2ac6f45e41ff6e01766d20c4ead57652f1fe28d3 (diff) | |
download | steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar.gz steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar.bz2 steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar.lz steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar.xz steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.tar.zst steve-bot-03ad084f5640dd24212e3488d6789d9c691da8d8.zip |
Screenshot websites :D
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): |