fixed a bug that would allow you to enter incorrect words in master mode

This commit is contained in:
Jack 2020-05-29 00:26:03 +01:00
parent c2629c6db4
commit 0eaca00b17

View file

@ -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;
}