fixed a bug where sentences would be built in custom mode

This commit is contained in:
Jack 2020-05-16 20:15:45 +01:00
parent 66cae29fad
commit e4de5c7f90

View file

@ -108,7 +108,7 @@ function initWords() {
wordsList.push(w[i]);
}
}
if (config.punctuation) {
if (config.punctuation && !config.mode == "custom") {
wordsList = buildSentences(wordsList);
}
showWords();