mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
Added functionality so that you fail on incorrect opposite shift for master and expert mode (#2190) by Estebene
* Added fail on incorrect opposite shift for master and expert mode * Changed so the test only fails on master mode
This commit is contained in:
parent
f1bcc7b7f6
commit
d6d64366e5
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ function handleChar(char, charIndex) {
|
|||
}
|
||||
}
|
||||
|
||||
if (!correctShiftUsed) return;
|
||||
if (!correctShiftUsed && Config.difficulty != "master") return;
|
||||
|
||||
//update current corrected version. if its empty then add the current char. if its not then replace the last character with the currently pressed one / add it
|
||||
if (TestLogic.corrected.current === "") {
|
||||
|
|
Loading…
Reference in a new issue