Skip to content

Commit

Permalink
Fixed spacing, changed colors to better resemble leave operation
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrxyz committed Jun 8, 2022
1 parent e3f0f73 commit e8d2753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/discord/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ async def on_member_remove(self, member: discord.Member):
embed = discord.Embed(color=discord.Color.yellow())
else:
unconfirmed_statement = ":x:"
embed = discord.Embed(color=discord.Color.brand_green())
embed = discord.Embed(color=discord.Color.brand_red())

embed.title = "Member Leave"

joined_at = (
f"{discord.utils.format_dt(member.joined_at, style='f')}"
f"{discord.utils.format_dt(member.joined_at, style='f')} "
f"({discord.utils.format_dt(member.joined_at, style='R')})"
)
embed.description = (
Expand Down

0 comments on commit e8d2753

Please sign in to comment.