From c87261b17e9bb11066713d39d0ed43701a217b42 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 19:27:18 -0400 Subject: [PATCH] fix(forums): changed no button emoji as it can't be seen against a red button background --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index 95c305a..83036c1 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -61,7 +61,7 @@ class Forums(commands.Cog): else: await interaction.response.send_message(content="You cannot close this thread!", ephemeral=True) - @ui.button(label="No", style=discord.ButtonStyle.danger, emoji="❌") + @ui.button(label="No", style=discord.ButtonStyle.danger, emoji="✖️") async def resolved_button_no(self, button: ui.Button, interaction: discord.Interaction): match = any(role_id in interaction.user.roles for role_id in await self.config.guild(interaction.channel.guild).request_roles()) if match or interaction.user.id == interaction.channel.owner.id: