fixed lose condition

This commit is contained in:
Rushil Umaretiya 2024-05-29 00:11:20 -04:00
parent bd69849b18
commit ab01bb06cf
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959

View File

@ -160,6 +160,7 @@ let handleGuess = () => {
} }
}, 300 * (i + 1) + 300); }, 300 * (i + 1) + 300);
} }
console.log(GUESSES, guesses.length);
if (lockedGuess === currentWord) { if (lockedGuess === currentWord) {
running = false; running = false;
@ -180,7 +181,7 @@ let handleGuess = () => {
origin: { y: 0.6 }, origin: { y: 0.6 },
}); });
}, 2000); }, 2000);
} else if (guesses.length === GUESSES) { } else if (guesses.length == GUESSES - 1) {
running = false; running = false;
setTimeout(() => { setTimeout(() => {