Added more answer information to embedded application

This commit is contained in:
unknown 2023-03-13 16:46:47 +01:00
parent a52ec2d7ad
commit 48ec3a98c4

View File

@ -84,9 +84,11 @@ class Recruitment(commands.Cog):
embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green()) embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green())
embed.set_thumbnail(url=author.avatar_url) embed.set_thumbnail(url=author.avatar_url)
embed.add_field(name="Name", value=answers[0]) 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="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 return embed