Skip to content

Commit

Permalink
[ConversationGames] fix
Browse files Browse the repository at this point in the history
  • Loading branch information
japandotorg committed Oct 12, 2023
1 parent 4a3b34f commit 04c76a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conversationgames/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def _callback(self: Select, interaction: discord.Interaction[Red]) -> None
)
embed: discord.Embed = discord.Embed(
title=title,
description=self.view._result["question"] if self.values[0] == "English" else f"({self.label[0]}) {self.view._result['translations'][self.values[0]]}", # type: ignore
description=self.view._result["question"] if self.values[0] == "English" else self.view._result["translations"][self.values[0]], # type: ignore
color=await self.view._ctx.embed_color(), # type: ignore
)
embed.set_footer(
Expand Down

0 comments on commit 04c76a0

Please sign in to comment.