increased the initial words generated in timed mode to fill the screen after increasing the page width

This commit is contained in:
Jack 2020-06-01 19:16:03 +01:00
parent 16517733cd
commit 0ea3ff896f

View file

@ -123,7 +123,7 @@ function initWords() {
if (config.mode == "time" || config.mode == "words") {
let wordsBound = config.mode == "time" ? 50 : config.words;
let wordsBound = config.mode == "time" ? 60 : config.words;
for (let i = 0; i < wordsBound; i++) {
randomWord = language[Math.floor(Math.random() * language.length)];
previousWord = wordsList[i - 1];