From 461716b0eb236d87e5d17e894fb1ebbb89125d8d Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 13 Mar 2023 00:23:52 +0100 Subject: [PATCH] Trying to update the embedded message --- recruitmentCog/recruitment.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recruitmentCog/recruitment.py b/recruitmentCog/recruitment.py index 19e7a89..3c2bdfe 100644 --- a/recruitmentCog/recruitment.py +++ b/recruitmentCog/recruitment.py @@ -54,7 +54,8 @@ class Recruitment(commands.Cog): async def format_application(self, answers: List[str], author: discord.Member) -> discord.Embed: """Format the application answers into an embed.""" - embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green()) + embed = discord.Embed(title=f"Application from [{author.display_name}](https://discordapp.com/users/{author.id})", color=discord.Color.green()) + embed.set_thumbnail(url=author.avatar_url) embed.add_field(name="Name", value=answers[0]) embed.add_field(name="Discord ID", value=author.id) embed.add_field(name="Age", value=answers[1])