fixed wrong words bound in custom show all lines

This commit is contained in:
Jack 2020-08-02 23:50:09 +01:00
parent 3f3f313a73
commit fba3828746

View file

@ -418,6 +418,8 @@ function initWords() {
if (config.mode === "custom") {
if (customTextIsRandom) {
wordsBound = customTextWordCount;
} else {
wordsBound = customText.length;
}
} else if (config.mode != "time") {
wordsBound = config.words;