important bug fix update v2.1.2

This commit is contained in:
DJj123dj
2022-07-01 08:19:35 +02:00
parent 5f5699f160
commit 76d491d27c
8 changed files with 98 additions and 9 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ exports.checker = async () => {
//languagefile
checkType(config.languagefile,"string","languagefile")
const lf = config.languagefile
if (!lf.startsWith("custom") && !lf.startsWith("english") && !lf.startsWith("dutch") && !lf.startsWith("romanian")){
if (!lf.startsWith("custom") && !lf.startsWith("english") && !lf.startsWith("dutch") && !lf.startsWith("romanian") && !lf.startsWith("german")){
createError("'languagefile' | invalid language, more info in the wiki")
}