Skip to content

Commit

Permalink
📖 Update ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
wiki-Bird committed Aug 18, 2023
1 parent c692221 commit 41e5390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
- [x] Fixed backspace bug
- [x] Time trial gamemode
- [x] Blur on not focused
- [ ] Alphabet gamemode
- [x] Alphabet gamemode
- [ ] Pi gamemode
- [ ] Multiplayer
2 changes: 1 addition & 1 deletion scripts/typing.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ document.addEventListener("DOMContentLoaded", function() {
}
back = false;
}
else if (newestChar == " " || newestChar == "Enter" || event.inputType == "insertLineBreak" || event.inputType == "insertParagraph") {
else if ((newestChar == " " || newestChar == "Enter" || event.inputType == "insertLineBreak" || event.inputType == "insertParagraph") && !document.querySelector(".timeStat")) {
linesCheck();
wordsWritten++;
if (nextLetter != false) {
Expand Down

0 comments on commit 41e5390

Please sign in to comment.