From c3284f0a0f23a1b114ae576e2386b7580139fcff Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 27 Dec 2025 16:21:17 -0800 Subject: [PATCH] fix Turn Counter --- 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 fa9089d..5b1b1ac 100644 --- a/modules/games/mmind.py +++ b/modules/games/mmind.py @@ -211,7 +211,7 @@ def compareCodeMMind(secret_code, user_guess, nodeID): def playGameMMind(diff, secret_code, turn_count, nodeID, message): msg = '' won = False - if turn_count <= 10: + if turn_count < 11: user_guess = getGuessMMind(diff, message, nodeID) if user_guess == "XXXX": msg += f"⛔️Invalid guess. Please enter 4 valid colors letters.\n🔴🟢🔵🔴 is RGBR"