This commit is contained in:
insert 2024-08-10 15:58:42 -04:00
parent a8f6b8ebf6
commit 4bd4fb64a6
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -37,11 +37,11 @@ class GameView(nextcord.ui.View):
continue continue
else: else:
message = message + ogmsg[i] + "\n" message = message + ogmsg[i] + "\n"
print(interaction.user.guild_permissions)
await interaction.response.edit_message(content=message)
if turnover: if turnover:
await interaction.followup.send(f"The turn has concluded",view=None) await interaction.response.edit_message(content=message,view=None)
await interaction.followup.send(f"The turn has concluded")
else: else:
await interaction.response.edit_message(content=message)
await interaction.followup.send(f"<{turnping}> it is now your turn!") await interaction.followup.send(f"<{turnping}> it is now your turn!")
return return