diff options
Diffstat (limited to 'script/library.lua')
-rw-r--r-- | script/library.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/library.lua b/script/library.lua index cddc8834..0104189d 100644 --- a/script/library.lua +++ b/script/library.lua @@ -352,8 +352,8 @@ end local function apply3rd(uri, cfg, onlyMemory) local changes = {} - if cfg.config then - for key, value in pairs(cfg.config) do + if cfg.settings then + for key, value in pairs(cfg.settings) do if type(value) == 'table' then if #value == 0 then for k, v in pairs(value) do |