From da4f8a57c0153f25565f3f60dac28a53fe52c475 Mon Sep 17 00:00:00 2001 From: insert Date: Sat, 10 Aug 2024 15:48:39 -0400 Subject: [PATCH] update --- gameutils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gameutils.py b/gameutils.py index a901951..e02c845 100644 --- a/gameutils.py +++ b/gameutils.py @@ -16,11 +16,13 @@ class GameView(nextcord.ui.View): label="Next Turn", style=nextcord.ButtonStyle.green, custom_id="gameutils:nextturn" ) async def approve(self, button: nextcord.ui.Button, interaction: nextcord.Interaction): + if await application_checks.check(application_checks.has_permissions(manage_roles=True)): + await interaction.response.semd_message("You don't have permission!", ephemeral=True) ogmsg = interaction.message.content.split("\n") ogmsg.pop(0) message = "It has been decreed..\n" found = False - trunover = False + turnover = False for i in range(len(ogmsg)): if ogmsg[i].startswith("~"): message = f"{message}{ogmsg[i]}\n"