mirror of
https://github.com/Rushilwiz/eldrow.git
synced 2025-04-03 04:00:18 -04:00
fixed lose condition
This commit is contained in:
parent
bd69849b18
commit
ab01bb06cf
3
index.js
3
index.js
|
@ -160,6 +160,7 @@ let handleGuess = () => {
|
|||
}
|
||||
}, 300 * (i + 1) + 300);
|
||||
}
|
||||
console.log(GUESSES, guesses.length);
|
||||
|
||||
if (lockedGuess === currentWord) {
|
||||
running = false;
|
||||
|
@ -180,7 +181,7 @@ let handleGuess = () => {
|
|||
origin: { y: 0.6 },
|
||||
});
|
||||
}, 2000);
|
||||
} else if (guesses.length === GUESSES) {
|
||||
} else if (guesses.length == GUESSES - 1) {
|
||||
running = false;
|
||||
|
||||
setTimeout(() => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user