From 9b8c6a142604a31276cea96422881cc57151e1a5 Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Mon, 26 Jul 2021 17:34:36 +0200 Subject: [PATCH] allow import of values not in db... will be ignored anyways --- Modules/ExportImport.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/ExportImport.lua b/Modules/ExportImport.lua index fe0d112..9d9110a 100644 --- a/Modules/ExportImport.lua +++ b/Modules/ExportImport.lua @@ -100,7 +100,7 @@ function ExportImport:CheckDeserializedOptions(tbl, refTbl, str) end for k,v in pairs(tbl) do if refTbl[k] == nil then - return false, str .. "." .. k .. " does not exist" + --return false, str .. "." .. k .. " does not exist" else if type(v) ~= type(refTbl[k]) then return false, str .. "." .. k .. " type error. Expected " .. type(refTbl[k]) .. " found " .. type(v)