This commit is contained in:
insert 2024-08-10 15:37:41 -04:00
parent df84579fb9
commit fe683cd563
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -20,21 +20,29 @@ class GameView(nextcord.ui.View):
ogmsg.pop(0)
message = "It has been decreed..\n"
found = False
trunover = False
for i in range(len(ogmsg)):
if ogmsg[i].startswith("~"):
message = f"{message}{ogmsg[i]}\n"
continue
if not found:
newmsg = "~~" + ogmsg[i] + "~~"
turnping = ogmsg[i+1].split("<")[1].split(">")[0]
found = True
message = message + newmsg + "\n"
found = True
try:
turnping = ogmsg[i+1].split("<")[1].split(">")[0]
except IndexError:
message = message + "The turn is over"
turnover = True
continue
else:
message = message + ogmsg[i] + "\n"
print(interaction.user.guild_permissions)
await interaction.response.edit_message(content=message)
await interaction.followup.send(f"<{turnping}> it is now your turn!")
if turnover:
await interaction.followup.send(f"The turn has concluded")
else:
await interaction.followup.send(f"<{turnping}> it is now your turn!")
return
class gameutils(commands.Cog):