From 1a6c6a0b78dac37bed1b43a1550600dedc68bba5 Mon Sep 17 00:00:00 2001 From: insert Date: Sun, 11 Aug 2024 00:45:22 -0400 Subject: [PATCH] Update --- gameutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameutils.py b/gameutils.py index a941144..d05f963 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: