removed prints for debugging
This commit is contained in:
@@ -159,11 +159,9 @@ class BlackJack:
|
|||||||
while not validInput:
|
while not validInput:
|
||||||
if play == "h":
|
if play == "h":
|
||||||
self.hit()
|
self.hit()
|
||||||
print(f"Hit {self.playerTurn}")
|
|
||||||
validInput = True
|
validInput = True
|
||||||
elif play == "s":
|
elif play == "s":
|
||||||
self.stand()
|
self.stand()
|
||||||
print(f"stood {self.playerTurn}")
|
|
||||||
validInput = True
|
validInput = True
|
||||||
playerStood = True
|
playerStood = True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user