From 48ec3a98c4cb03af57335e5666b918dc5ae86913 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 13 Mar 2023 16:46:47 +0100 Subject: [PATCH] Added more answer information to embedded application --- recruitmentCog/recruitment.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recruitmentCog/recruitment.py b/recruitmentCog/recruitment.py index 50f3938..e1b282f 100644 --- a/recruitmentCog/recruitment.py +++ b/recruitmentCog/recruitment.py @@ -84,9 +84,11 @@ class Recruitment(commands.Cog): embed = discord.Embed(title=f"Application from {author.display_name}", 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]) - embed.add_field(name="Reason wishing to become a member:", value=answers[2]) + embed.add_field(name="Country", value=answers[2]) + embed.add_field(name="Hobbies", value=answers[3]) + embed.add_field(name="Here for particular game?", value=answers[4]) + embed.add_field(name="Motivation for wanting to join:", value=answers[5]) return embed