From 74f5b015962e8b450171157fd3a5c5c264a26649 Mon Sep 17 00:00:00 2001 From: insert Date: Sun, 11 Aug 2024 00:46:28 -0400 Subject: [PATCH] Update --- gameutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gameutils.py b/gameutils.py index d05f963..0e49ba2 100644 --- a/gameutils.py +++ b/gameutils.py @@ -27,7 +27,7 @@ class TurnModal(nextcord.ui.Modal): async def callback(self, interaction: nextcord.Interaction) -> None: if not self.fristrun: await interaction.response.edit_message(content=self.message) - await interaction.followup.send(f"<@{self.turnping}> it is now your turn!\n{self.text.value}") + await interaction.followup.send(f"<{self.turnping}> it is now your turn!\n{self.text.value}") else: sentmsg = await interaction.response.send_message(self.message, view=GameView(), allowed_mentions=nextcord.AllowedMentions.none()) try: @@ -35,7 +35,7 @@ class TurnModal(nextcord.ui.Modal): await sentmsg.pin() except: pass - await interaction.followup.send(f"<{self.fristrun.id}> it is now your turn!\n{self.text.value}") + await interaction.followup.send(f"<@{self.fristrun.id}> it is now your turn!\n{self.text.value}") class GameView(nextcord.ui.View):