Update
This commit is contained in:
parent
2f81cfdf64
commit
b4a2758d22
1 changed files with 2 additions and 2 deletions
|
@ -24,10 +24,10 @@ class RoleView(nextcord.ui.View):
|
||||||
role = interaction.guild.get_role(int(interaction.data["custom_id"].split(":")[1]))
|
role = interaction.guild.get_role(int(interaction.data["custom_id"].split(":")[1]))
|
||||||
if role in interaction.user.roles:
|
if role in interaction.user.roles:
|
||||||
await interaction.user.remove_roles(role, reason=f"{interaction.user.display_name} used role button")
|
await interaction.user.remove_roles(role, reason=f"{interaction.user.display_name} used role button")
|
||||||
await interaction.response.send_message(f"Removed <@{role}> from you!", ephemeral=True, allowed_mentions=nextcord.AllowedMentions.none)
|
await interaction.response.send_message(f"Removed <@{role}> from you!", ephemeral=True, allowed_mentions=nextcord.AllowedMentions.none())
|
||||||
else:
|
else:
|
||||||
await interaction.user.add_roles(role, reason=f"{interaction.user.display_name} used role button")
|
await interaction.user.add_roles(role, reason=f"{interaction.user.display_name} used role button")
|
||||||
await interaction.response.send_message(f"Added <@{role}> to you!", ephemeral=True, allowed_mentions=nextcord.AllowedMentions.none)
|
await interaction.response.send_message(f"Added <@{role}> to you!", ephemeral=True, allowed_mentions=nextcord.AllowedMentions.none())
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue