This commit is contained in:
insert 2024-08-10 15:48:39 -04:00
parent fe683cd563
commit da4f8a57c0
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -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"