diff options
Diffstat (limited to 'script/config')
-rw-r--r-- | script/config/config.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index 52848a44..92d77a5c 100644 --- a/script/config/config.lua +++ b/script/config/config.lua @@ -317,6 +317,8 @@ function m.update(new) end if Template[fullKey] then m.set(fullKey, value) + elseif Template['Lua.' .. fullKey] then + m.set('Lua.' .. fullKey, value) elseif type(value) == 'table' then expand(value, fullKey) end |