From 52dd1723f333cd2ee133504f49e9986c71d9497c Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 15 Jul 2021 17:34:22 +0100 Subject: [PATCH] not adding incomplete seconds --- src/js/test/test-logic.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/js/test/test-logic.js b/src/js/test/test-logic.js index c0a3e1bb9..012759f33 100644 --- a/src/js/test/test-logic.js +++ b/src/js/test/test-logic.js @@ -1254,12 +1254,12 @@ export function finish(difficultyFailed = false) { $("#result .stats .time .bottom .afk").text(afkSecondsPercent + "% afk"); } let ttseconds = testtime - afkseconds; - if (!difficultyFailed) { - ttseconds += - TestStats.incompleteSeconds < 0 - ? 0 - : Misc.roundTo2(TestStats.incompleteSeconds); - } + // if (!difficultyFailed) { + // ttseconds += + // TestStats.incompleteSeconds < 0 + // ? 0 + // : Misc.roundTo2(TestStats.incompleteSeconds); + // } TodayTracker.addSeconds(ttseconds); $("#result .stats .time .bottom .timeToday").text(TodayTracker.getString()); $("#result .stats .key .bottom").text(testtime + "s");