fix(logger): just include author username in the author field, also include the guild icon in the footer
This commit is contained in:
parent
ce502d5725
commit
6d0d45736d
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ class Logger(commands.Cog):
|
||||||
channel = self.bot.get_channel(c)
|
channel = self.bot.get_channel(c)
|
||||||
if channel:
|
if channel:
|
||||||
embed = discord.Embed(color=discord.Color.from_str(value="#ff470f"), timestamp=datetime.now(tz=UTC))
|
embed = discord.Embed(color=discord.Color.from_str(value="#ff470f"), timestamp=datetime.now(tz=UTC))
|
||||||
embed.set_author(name=f"{author.display_name} - Deleted Message", icon_url=author.display_avatar.url)
|
embed.set_author(name=f"{author.name}", icon_url=author.display_avatar.url)
|
||||||
embed.description = bold(text=f"Message sent by {author.mention} deleted in {payload.cached_message.channel.mention}\n", escape_formatting=False) + content
|
embed.description = bold(text=f"Message sent by {author.mention} deleted in {payload.cached_message.channel.mention}\n", escape_formatting=False) + content
|
||||||
embed.set_footer(text=f"Author: {author.id} | Message ID: {payload.message_id}")
|
embed.set_footer(text=f"Author: {author.id} | Message ID: {payload.message_id}", icon_url=guild.icon.url)
|
||||||
|
|
||||||
await channel.send(embed=embed)
|
await channel.send(embed=embed)
|
||||||
|
|
Loading…
Reference in a new issue