comment "push" and "blackjack"

remotes/1693045480750635534/spooky-22
Aevann1 2022-09-05 08:50:18 +02:00
parent e554f0924b
commit aae9389b23
1 changed files with 8 additions and 8 deletions

View File

@ -122,14 +122,14 @@ def deal_blackjack_game(gambler, wager_value, currency):
gambler.winnings -= wager_value
game.winnings -= wager_value
if player_value == 21 and dealer_value == 21:
game_state["status"] = 'push'
save_game_state(game, game_state)
apply_blackjack_result(gambler)
elif player_value == 21:
game_state["status"] = 'blackjack'
save_game_state(game, game_state)
apply_blackjack_result(gambler)
# if player_value == 21 and dealer_value == 21:
# game_state["status"] = 'push'
# save_game_state(game, game_state)
# apply_blackjack_result(gambler)
# elif player_value == 21:
# game_state["status"] = 'blackjack'
# save_game_state(game, game_state)
# apply_blackjack_result(gambler)
g.db.flush()