diff --git a/games/casino.py b/games/casino.py index 7120905..c8d5f36 100644 --- a/games/casino.py +++ b/games/casino.py @@ -1144,7 +1144,7 @@ class CasinoGame(BaseGame): for bet in bets: player_hand = all_hands.get(bet['user_id']) - if player_hand and player_hand['hand_status'] == 'playing': + if player_hand and player_hand['status'] == 'playing': all_players_done = False break @@ -1205,7 +1205,7 @@ class CasinoGame(BaseGame): for bet in bets: player_hand = all_hands.get(bet['user_id']) - if player_hand and player_hand['hand_status'] == 'playing': + if player_hand and player_hand['status'] == 'playing': all_players_done = False break