Update mmind.py

This commit is contained in:
SpudGunMan
2025-10-19 19:21:48 -07:00
parent 48366bc595
commit f41ff2d5f7
+2 -2
View File
@@ -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)