mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 21:33:40 +08:00
fixed replay not working well with stop on error
This commit is contained in:
parent
3f81cc09f9
commit
4daa6ad8bf
1 changed files with 7 additions and 4 deletions
|
@ -234,7 +234,6 @@ function handleSpace(event, isEnter) {
|
|||
dontInsertSpace = true;
|
||||
if (currentWord == TestLogic.input.current || Config.mode == "zen") {
|
||||
//correct word or in zen mode
|
||||
Replay.addReplayEvent("submitCorrectWord");
|
||||
PaceCaret.handleSpace(true, currentWord);
|
||||
TestStats.incrementAccuracy(true);
|
||||
TestLogic.input.pushHistory();
|
||||
|
@ -250,9 +249,9 @@ function handleSpace(event, isEnter) {
|
|||
if (Funbox.active !== "nospace") {
|
||||
Sound.playClick(Config.playSoundOnClick);
|
||||
}
|
||||
Replay.addReplayEvent("submitCorrectWord");
|
||||
} else {
|
||||
//incorrect word
|
||||
Replay.addReplayEvent("submitErrorWord");
|
||||
PaceCaret.handleSpace(false, currentWord);
|
||||
if (Funbox.active !== "nospace") {
|
||||
if (!Config.playSoundOnError || Config.blindMode) {
|
||||
|
@ -309,6 +308,7 @@ function handleSpace(event, isEnter) {
|
|||
TestLogic.finish();
|
||||
return;
|
||||
}
|
||||
Replay.addReplayEvent("submitErrorWord");
|
||||
}
|
||||
|
||||
TestLogic.corrected.pushHistory();
|
||||
|
@ -572,7 +572,6 @@ function handleAlpha(event) {
|
|||
}
|
||||
|
||||
if (!thisCharCorrect) {
|
||||
Replay.addReplayEvent("incorrectLetter", event.key);
|
||||
TestStats.incrementAccuracy(false);
|
||||
TestStats.incrementKeypressErrors();
|
||||
// currentError.count++;
|
||||
|
@ -580,7 +579,6 @@ function handleAlpha(event) {
|
|||
thisCharCorrect = false;
|
||||
TestStats.pushMissedWord(TestLogic.words.getCurrent());
|
||||
} else {
|
||||
Replay.addReplayEvent("correctLetter", event.key);
|
||||
TestStats.incrementAccuracy(true);
|
||||
thisCharCorrect = true;
|
||||
if (Config.mode == "zen") {
|
||||
|
@ -632,6 +630,11 @@ function handleAlpha(event) {
|
|||
return;
|
||||
}
|
||||
|
||||
Replay.addReplayEvent(
|
||||
thisCharCorrect ? "correctLetter" : "incorrectLetter",
|
||||
event.key
|
||||
);
|
||||
|
||||
//update the active word top, but only once
|
||||
if (
|
||||
TestLogic.input.current.length === 1 &&
|
||||
|
|
Loading…
Reference in a new issue