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: