We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d169e9 commit 393b9dfCopy full SHA for 393b9df
frontend/src/ts/test/test-logic.ts
@@ -915,7 +915,13 @@ export async function finish(difficultyFailed = false): Promise<void> {
915
916
// stats
917
const stats = TestStats.calculateFinalStats();
918
- if (stats.time % 1 !== 0 && Config.mode !== "time") {
+ if (
919
+ stats.time % 1 !== 0 &&
920
+ !(
921
+ Config.mode === "time" ||
922
+ (Config.mode === "custom" && CustomText.getLimitMode() === "time")
923
+ )
924
+ ) {
925
TestStats.setLastSecondNotRound();
926
}
927
0 commit comments