diff --git a/techsupport_bot/commands/whois.py b/techsupport_bot/commands/whois.py index 8e2dfe54..05d9069c 100644 --- a/techsupport_bot/commands/whois.py +++ b/techsupport_bot/commands/whois.py @@ -64,7 +64,10 @@ async def whois_command( ) embed.add_field(name="Nickname", value=member.display_name) - role_string = ", ".join(role.name for role in member.roles[1:]) + role_list = member.roles[1:] + role_list.reverse() + + role_string = ", ".join(role.mention for role in role_list) embed.add_field(name="Roles", value=role_string or "No roles") config = self.bot.guild_configs[str(interaction.guild.id)]