aboutsummaryrefslogtreecommitdiff
path: root/cogs/logs.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/logs.py')
-rwxr-xr-xcogs/logs.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/cogs/logs.py b/cogs/logs.py
index c1b3a49..4f6aab1 100755
--- a/cogs/logs.py
+++ b/cogs/logs.py
@@ -19,15 +19,15 @@ class Logs(commands.Cog):
color = message.author.color
channel = self.bot.get_channel(int(self.bot.config[str(message.guild.id)]["logs_channel"]))
embed = discord.Embed(
- title='Deleted Message',
+ title='**Deleted Message**',
color=color,
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()
@@ -43,17 +43,17 @@ class Logs(commands.Cog):
else:
color = before.author.color
embed = discord.Embed(
- title='Edited Message',
+ title='**Edited Message**',
color=color,
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)