mirror of
https://github.com/Rushilwiz/eldrow.git
synced 2025-04-03 20:20:17 -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);
|
}, 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(() => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user