forked from blizzthewolf/SeaCogs
fix(aurora): changed color of close buttons to gray instead of red
This commit is contained in:
parent
fecde10b1c
commit
4d8aa465b1
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ class Addrole(ui.View):
|
|||
await config.guild(self.ctx.guild).addrole_whitelist.clear()
|
||||
await interaction.message.edit(embed=await addrole(self.ctx))
|
||||
|
||||
@ui.button(label="Close", style=ButtonStyle.red)
|
||||
@ui.button(label="Close", style=ButtonStyle.gray)
|
||||
async def close(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument
|
||||
if not interaction.user.guild_permissions.manage_guild and not interaction.user.guild_permissions.administrator:
|
||||
await interaction.response.send_message(error("You can't do that!"), ephemeral=True)
|
||||
|
|
|
@ -34,7 +34,7 @@ class Immune(ui.View):
|
|||
await config.guild(self.ctx.guild).immune_roles.clear()
|
||||
await interaction.message.edit(embed=await immune(self.ctx))
|
||||
|
||||
@ui.button(label="Close", style=ButtonStyle.red)
|
||||
@ui.button(label="Close", style=ButtonStyle.gray)
|
||||
async def close(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument
|
||||
if not interaction.user.guild_permissions.manage_guild and not interaction.user.guild_permissions.administrator:
|
||||
await interaction.response.send_message(error("You can't do that!"), ephemeral=True)
|
||||
|
|
Loading…
Reference in a new issue