aboutsummaryrefslogtreecommitdiff
path: root/cogs
diff options
context:
space:
mode:
authorThomas Voss <57815710+Mango0x45@users.noreply.github.com>2020-07-25 23:19:38 +0000
committerGitHub <noreply@github.com>2020-07-25 23:19:38 +0000
commit8e8b10e2875fb384887239a3e05964b9504e127d (patch)
treee19f62f41a173ba027d9366ef1257d310ca69f27 /cogs
parent4bab18fd38f00549fdca8b4e0d2971cafa8413b3 (diff)
downloadsteve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar.gz
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar.bz2
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar.lz
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar.xz
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.tar.zst
steve-bot-8e8b10e2875fb384887239a3e05964b9504e127d.zip
Bold pls
Diffstat (limited to 'cogs')
-rwxr-xr-xcogs/logs.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/cogs/logs.py b/cogs/logs.py
index c1b3a49..fd34b77 100755
--- a/cogs/logs.py
+++ b/cogs/logs.py
@@ -24,10 +24,10 @@ class Logs(commands.Cog):
timestamp=message.created_at
)
embed.add_field(
- name='User', value=message.author.mention, inline=True)
+ name='**User**', value=message.author.mention, inline=True)
embed.add_field(
- name='Channel', value=message.channel.mention, inline=True)
- embed.add_field(name='Message', value=message.content, inline=False)
+ name='**Channel**', value=message.channel.mention, inline=True)
+ embed.add_field(name='**Message**', value=message.content, inline=False)
await channel.send(embed=embed)
@commands.Cog.listener()
@@ -48,12 +48,12 @@ class Logs(commands.Cog):
timestamp=after.edited_at
)
embed.add_field(
- name='User', value=before.author.mention, inline=True)
+ name='**User**', value=before.author.mention, inline=True)
embed.add_field(
- name='Channel', value=before.channel.mention, inline=True)
- embed.add_field(name='Original Message',
+ name='**Channel**', value=before.channel.mention, inline=True)
+ embed.add_field(name='**Original Message**',
value=before.content, inline=False)
- embed.add_field(name='New Message', value=after.content, inline=False)
+ embed.add_field(name='**New Message**', value=after.content, inline=False)
await channel.send(embed=embed)