Skip to content

Commit

Permalink
modified blackjack.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejaswgupta committed Feb 14, 2020
1 parent 9cbb852 commit b810d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BlackJack_game/blackjack_rr.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ def push(player, dealer):


# GAMEPLAY
player_chips = Chips()

while True:

Expand Down Expand Up @@ -181,7 +182,6 @@ def push(player, dealer):
dealer_hand.add_card(deck.deal())
dealer_hand.add_card(deck.deal())

player_chips = Chips()

take_bet(player_chips)

Expand Down

0 comments on commit b810d0e

Please sign in to comment.