From a7bdaedfe10623a0c1a449acacefe48b56537070 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 27 Sep 2024 21:57:22 -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 0327e57..45eeb65 100644 --- a/modules/blackjack.py +++ b/modules/blackjack.py @@ -444,7 +444,7 @@ def playBlackJack(nodeID, message): if p_chips.total > 0: msg += "🪙Keep the change you filthy animal!" else: - msg += "💸NO MORE MONEY! Game Over!" + msg += "💸NO MORE MONEY!🏧💳" p_chips.total = jack_starting_cash else: # check high score @@ -455,7 +455,7 @@ def playBlackJack(nodeID, message): else: msg += f"💰You have {p_chips.total} chips " - msg += "place a bet?" + msg += " Bet or Leave?" # Reset the game setLastCmdJack(nodeID, "new")