fixed lazy mode not working

This commit is contained in:
Jack 2021-09-13 17:31:15 +01:00
parent c063012e9e
commit 9a6ad299d8

View file

@ -589,7 +589,7 @@ export async function init() {
if (britishWord) randomWord = britishWord;
}
if (Config.lazyMode === true && language.accents) {
if (Config.lazyMode === true && !language.noLazyMode) {
randomWord = LazyMode.replaceAccents(randomWord);
}