From 3e8fb553aeac847ef87e1046eea746cb76271cde Mon Sep 17 00:00:00 2001 From: Lemon Rose Date: Thu, 12 Oct 2023 22:45:32 +0530 Subject: [PATCH] [ConversationGames] fix author --- conversationgames/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conversationgames/views.py b/conversationgames/views.py index 14857412..1af84368 100644 --- a/conversationgames/views.py +++ b/conversationgames/views.py @@ -98,7 +98,7 @@ async def interaction_check(self, interaction: discord.Interaction[Red]) -> bool async def _callback(self: Select, interaction: discord.Interaction[Red]) -> None: # type: ignore await interaction.response.defer() title = ( - f"{interaction.user} asked {self.view._member}" # type: ignore + f"{self.view._ctx.author} asked {self.view._member}" # type: ignore if self.view._member is not None # type: ignore else None )