From 8e8b10e2875fb384887239a3e05964b9504e127d Mon Sep 17 00:00:00 2001 From: Thomas Voss <57815710+Mango0x45@users.noreply.github.com> Date: Sun, 26 Jul 2020 01:19:38 +0200 Subject: Bold pls --- cogs/logs.py | 14 +++++++------- 1 file 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) -- cgit v1.2.3