Skip to content

Commit 40cdd0e

Browse files
committed
fixed a bug where sentences would be built in custom mode
1 parent ff0d42b commit 40cdd0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/js/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function initWords() {
108108
wordsList.push(w[i]);
109109
}
110110
}
111-
if (config.punctuation) {
111+
if (config.punctuation && !config.mode == "custom") {
112112
wordsList = buildSentences(wordsList);
113113
}
114114
showWords();

0 commit comments

Comments
 (0)