From 993292cec86c9e3a0dfab7086d3b3a9c2c2338c7 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 20 Sep 2024 18:30:50 -0700 Subject: [PATCH] Update blackjack.py --- modules/blackjack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/blackjack.py b/modules/blackjack.py index 54eda8d..fd28507 100644 --- a/modules/blackjack.py +++ b/modules/blackjack.py @@ -350,7 +350,7 @@ def playBlackJack(nodeID, message): # Check if player bust if player_bust(p_hand, p_chips): d_win += 1 - msg += f"Player BUSTšŸ’„" + msg += "Player:BUSTšŸ’„" setLastCmdJack(nodeID, "dealerTurn") if getLastCmdJack(nodeID) == "playing": @@ -400,7 +400,7 @@ def playBlackJack(nodeID, message): d_hand.add_cards(d_card) if dealer_bust(d_hand, p_hand, p_chips): p_win += 1 - msg += f"Dealer BUSTšŸ’„\n" + msg += "Dealer:BUSTšŸ’„" break # Show all cards msg += show_all(p_hand.cards, d_hand.cards, p_hand, d_hand)