From f41ff2d5f77c4853db43c3950faf15ddb486d1eb Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 19 Oct 2025 19:21:48 -0700 Subject: [PATCH] Update mmind.py --- modules/games/mmind.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/games/mmind.py b/modules/games/mmind.py index af335b6..6978efa 100644 --- a/modules/games/mmind.py +++ b/modules/games/mmind.py @@ -199,9 +199,9 @@ def compareCodeMMind(secret_code, user_guess): temp_code.remove(guess) # Remove the first occurrence of the matched color # display feedback if game_won: - msg += f"Correct{getEmojiMMind(user_guess)}\n" + msg += f"\nCorrect{getEmojiMMind(user_guess)}\n" else: - msg += f"Guess{getEmojiMMind(user_guess)}\n" + msg += f"\nGuess{getEmojiMMind(user_guess)}\n" if perfect_pins > 0 and game_won == False: msg += "✅ color ✅ position: {}".format(perfect_pins)