This commit is contained in:
Jack 2021-06-03 17:37:12 +01:00
commit 26f7ca38ec

View file

@ -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();