Adding dumb stuff to embedded message

This commit is contained in:
unknown 2023-03-13 00:54:42 +01:00
parent cb0caf5aa3
commit 2d26f45738

View File

@ -60,11 +60,12 @@ class Recruitment(commands.Cog):
embed.add_field(name="Discord ID", value=author.id) 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="Reason wishing to become a member:", value=answers[2])
# Add a link to the author's profile that opens a private conversation with them guilds = [f"{guild.name} ({guild.id})" for guild in author.guilds]
author_url = f"https://discordapp.com/users/{author.id}" if guilds:
author_link = f"[Click here to message {author.display_name}]({author_url})" embed.add_field(name="Server Membership", value="\n".join(guilds))
embed.set_footer(text=author_link)
embed.add_field(name="Status", value=author.status.name)
return embed return embed