mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-14 07:54:41 +08:00
Merge branch 'master' of https://github.com/Miodec/monkey-type
This commit is contained in:
commit
26f7ca38ec
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