BlackJack 2 Progress

This commit is contained in:
2023-07-19 09:55:54 +10:00
parent 50251c3f1d
commit 72aa847663
3 changed files with 96 additions and 18 deletions

View File

@@ -133,7 +133,7 @@ class BlackJack:
def dealerHitLogic(self):
total = getHandTotal(self.dealerHand)
if total > 17:
if total >= 17:
self.stand()
return True
else: