diff --git a/src/js/input-controller.js b/src/js/input-controller.js index 01bb229ea..8a6cb9174 100644 --- a/src/js/input-controller.js +++ b/src/js/input-controller.js @@ -759,6 +759,8 @@ function handleAlpha(event) { } if (!thisCharCorrect && Config.difficulty == "master") { + TestLogic.input.pushHistory(); + TestLogic.corrected.pushHistory(); TestLogic.fail("difficulty"); return; } diff --git a/src/js/test/test-logic.js b/src/js/test/test-logic.js index 9cefb2cc2..ae0fa52be 100644 --- a/src/js/test/test-logic.js +++ b/src/js/test/test-logic.js @@ -2096,8 +2096,8 @@ export async function finish(difficultyFailed = false) { let failReason = ""; export function fail(reason) { failReason = reason; - input.pushHistory(); - corrected.pushHistory(); + // input.pushHistory(); + // corrected.pushHistory(); TestStats.pushKeypressesToHistory(); finish(true); let testSeconds = TestStats.calculateTestSeconds(performance.now());