aboutsummaryrefslogtreecommitdiff
path: root/cogs/admin.py
diff options
context:
space:
mode:
authorThomas Voss <57815710+Mango0x45@users.noreply.github.com>2020-06-04 20:17:53 +0000
committerGitHub <noreply@github.com>2020-06-04 20:17:53 +0000
commit742b7e2f1f17fc027405550d8933866147f4ea4c (patch)
tree88a8d7f554dde2048bf3fc926fa8bfde711124f0 /cogs/admin.py
parentcbdd985e9bc948d3923c7af7995c2aa42aebf5fb (diff)
downloadsteve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar.gz
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar.bz2
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar.lz
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar.xz
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.tar.zst
steve-bot-742b7e2f1f17fc027405550d8933866147f4ea4c.zip
Debugging test thing
Diffstat (limited to 'cogs/admin.py')
-rw-r--r--cogs/admin.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/cogs/admin.py b/cogs/admin.py
index ac03d00..ce20e77 100644
--- a/cogs/admin.py
+++ b/cogs/admin.py
@@ -16,14 +16,15 @@ class Admin(commands.Cog):
@commands.Cog.listener()
async def on_deleted_message(self, message):
channel = self.bot.get_channel(718187032869994686)
- embed = discord.Embed(
- title = f'Deleted Message by {message.author}',
- description = message.content,
- color = message.author.color,
- timestamp = message.created_at
- )
- await channel.send(embed=embed)
-
+ #embed = discord.Embed(
+ # title = f'Deleted Message by {message.author}',
+ # description = message.content,
+ # color = message.author.color,
+ # timestamp = message.created_at
+ #)
+ #await channel.send(embed=embed)
+ await channel.send(message.content)
+
@commands.command(aliases=['deleteEverything'], hidden=True)
@commands.check(is_mod)
async def purge(self, ctx, password):