diff options
Diffstat (limited to 'server/src/service.lua')
-rw-r--r-- | server/src/service.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/service.lua b/server/src/service.lua index d35256bf..b7290329 100644 --- a/server/src/service.lua +++ b/server/src/service.lua @@ -672,9 +672,9 @@ function mt:restartDueToMemoryLeak() end) end -function mt:onUpdateConfig(updated) +function mt:onUpdateConfig(updated, other) local oldConfig = table.deepCopy(config.config) - config:setConfig(updated) + config:setConfig(updated, other) local newConfig = config.config if not table.equal(oldConfig.runtime, newConfig.runtime) then local library = require 'core.library' |