Update videopoker.py

This commit is contained in:
SpudGunMan
2024-09-19 23:38:06 -07:00
parent 28c46dcbfd
commit eedca4c1d0
+2 -2
View File
@@ -351,9 +351,9 @@ def playVideoPoker(nodeID, message):
# check if player has new high score
if player.bankroll > vpTracker[i]['highScore']:
vpTracker[i]['highScore'] = player.bankroll
msg += " 🎉New personal best score of {} coins.".format(player.bankroll)
msg += " 🎉HighScore! {} coins.".format(player.bankroll)
else:
msg += " Your high score is {} coins.".format(vpTracker[i]['highScore'])
msg += " Score is {} coins.".format(vpTracker[i]['highScore'])
msg += "Place your Bet, 'L' to leave the game."