From 2f19d86c95a0e1fc3434cdb3518837e96d63dcde Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 27 Sep 2024 22:17:07 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit : get it --- mesh_bot.py | 2 +- modules/blackjack.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 21fcfa7..0e66699 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -404,7 +404,7 @@ def handleVideoPoker(nodeID, message): highScore = loadHSVp() if highScore != 0: if highScore['nodeID'] != 0: - msg += f" HighScore🥇:{get_name_from_number(highScore['nodeID'])} with {highScore['highScore']} chips. " + msg += f" HighScore🥇{get_name_from_number(highScore['nodeID'])} with {highScore['highScore']} chips. " if last_cmd != "": logger.debug(f"System: VideoPoker: {nodeID} last command: {last_cmd}") diff --git a/modules/blackjack.py b/modules/blackjack.py index aac2ecb..f2d1821 100644 --- a/modules/blackjack.py +++ b/modules/blackjack.py @@ -450,7 +450,7 @@ def playBlackJack(nodeID, message): # check high score highScore = loadHSJack() if highScore != 0 and p_chips.total > highScore['highScore']: - msg += f"💰💰High Score{p_chips.total} " + msg += f"💰HighScore💰{p_chips.total} " saveHSJack(nodeID, p_chips.total) else: msg += f"💰You have {p_chips.total} chips "