baumsplitter41 пре 2 месеци
родитељ
комит
09be1835cf
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      VPD_BOT/cogs/logs.py

+ 3 - 1
VPD_BOT/cogs/logs.py

@@ -114,7 +114,7 @@ class actionlog(commands.Cog):
 
         embed = discord.Embed(
             title="Member Left",
-            description=f"{member.mention} has left the server.",
+            description=f"{member.mention} has left the server. Joined at: {member.joined_at}",
             color=discord.Color.dark_red(),
             timestamp=discord.utils.utcnow()
         )
@@ -252,5 +252,7 @@ class actionlog(commands.Cog):
         embed.set_footer(text=f"Server ID: {before.id}")
         await log_channel.send(embed=embed)
 
+
+
 def setup(bot: discord.Bot):
     bot.add_cog(actionlog(bot))