mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
Fix fail check to not fail until 3rd word in test
This commit is contained in:
parent
4cd30f0e10
commit
b26701c1d3
1 changed files with 3 additions and 1 deletions
|
@ -91,7 +91,9 @@ export function start() {
|
|||
(Config.minWpm === "custom" &&
|
||||
wpmAndRaw.wpm < parseInt(Config.minWpmCustomSpeed) &&
|
||||
TestLogic.words.currentIndex > 3) ||
|
||||
(Config.minAcc === "custom" && acc < parseInt(Config.minAccCustom))
|
||||
(Config.minAcc === "custom" &&
|
||||
acc < parseInt(Config.minAccCustom) &&
|
||||
TestLogic.words.currentIndex > 3)
|
||||
) {
|
||||
clearTimeout(timer);
|
||||
TestLogic.fail();
|
||||
|
|
Loading…
Reference in a new issue