mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 21:53:13 +08:00
increased the initial words generated in timed mode to fill the screen after increasing the page width
This commit is contained in:
parent
16517733cd
commit
0ea3ff896f
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue