We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e12a33e commit 1b2a07bCopy full SHA for 1b2a07b
71_Poker/python/game.py
@@ -72,6 +72,7 @@ def _play_round(self) -> None:
72
print(self.human.hand)
73
print()
74
75
+ # --- Opening bet ---
76
dealer_action = self.dealer.get_opening_action()
77
if self.dealer.money < self.dealer.bet:
78
self._dealer_try_raise_funds()
@@ -92,8 +93,8 @@ def _play_round(self) -> None:
92
93
f"\nI am taking {draw_count} card{'s' if draw_count != 1 else ''}"
94
)
95
96
+ # --- Post-draw bet ---
97
self.dealer.decide_postdraw_bet()
-
98
if not self._conduct_betting_round(post_draw=True):
99
return
100
0 commit comments