Skip to content

Commit

Permalink
[Discord] Improve PokerHand.new_round formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Jan 20, 2023
1 parent 77a7ff6 commit 95aef03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Discord/cogs/poker.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ async def new_round(self):
self.lines.append("")
self.lines.append(f"The pot: {self.pot}")
self.lines.append(
f"The {self.STAGES[self.stage]}: {cards_to_string(self.community_cards[:number_of_cards])}"
f"The {self.STAGES[self.stage]}: "
f"{cards_to_string(self.community_cards[:number_of_cards])}"
)
await self.message.edit(embed = self.embed)

Expand Down

0 comments on commit 95aef03

Please sign in to comment.