mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-13 15:36:42 +08:00
fixed a bug that would allow you to enter incorrect words in master mode
This commit is contained in:
parent
c2629c6db4
commit
0eaca00b17
1 changed files with 1 additions and 1 deletions
|
@ -1244,7 +1244,7 @@ $(document).keydown((event) => {
|
|||
if (currentWordIndex == wordsList.length) {
|
||||
showResult();
|
||||
return;
|
||||
}else if(config.difficulty == "expert"){
|
||||
}else if(config.difficulty == "expert" || config.difficulty == "master"){
|
||||
showResult(true);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue