aboutsummaryrefslogtreecommitdiff
path: root/cogs/admin.py
diff options
context:
space:
mode:
authorAnInternetTroll <lucafulger@gmail.com>2020-05-29 12:49:39 +0000
committerAnInternetTroll <lucafulger@gmail.com>2020-05-29 12:49:39 +0000
commit03ad084f5640dd24212e3488d6789d9c691da8d8 (patch)
tree245d011f192a121d1ae858fc198d46eba8015225 /cogs/admin.py
parent2ac6f45e41ff6e01766d20c4ead57652f1fe28d3 (diff)
downloadsteve-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-xcogs/admin.py9
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):