From 3059b8899189f44119a13ea9c5fa5336e7e43da0 Mon Sep 17 00:00:00 2001 From: Kelly Date: Wed, 9 Oct 2024 00:05:39 -0700 Subject: [PATCH] Update mmind.py --- modules/games/mmind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/games/mmind.py b/modules/games/mmind.py index 6f78bea..bafa7c1 100644 --- a/modules/games/mmind.py +++ b/modules/games/mmind.py @@ -231,7 +231,7 @@ def playGameMMind(diff, secret_code, turn_count, nodeID, message): if turn_count <= 10: user_guess = getGuessMMind(diff, message) if user_guess == "XXXX": - msg += "Invalid guess. Please enter 4 valid colors." + msg += f"⛔️Invalid guess. Please enter 4 valid colors letters.\n🔴🟢🔵🔴 is RGBR" return msg check_guess = compareCodeMMind(secret_code, user_guess)