Update
This commit is contained in:
parent
df84579fb9
commit
fe683cd563
1 changed files with 11 additions and 3 deletions
14
gameutils.py
14
gameutils.py
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue