undo formatting change in script_environment

develop
myk002 2021-03-29 12:29:15 -07:00
parent d71a816b20
commit 4e844f39ae
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 4 additions and 6 deletions

@ -606,12 +606,10 @@ function dfhack.script_environment(name, strict)
local scripts = internal.scripts local scripts = internal.scripts
local path = dfhack.findScript(name) local path = dfhack.findScript(name)
if not scripts[path] or scripts[path]:needs_update() then if not scripts[path] or scripts[path]:needs_update() then
local _, env = dfhack.run_script_with_env(nil, local _, env = dfhack.run_script_with_env(nil, name, {
name, module=true,
{ module_strict=(strict and true or false) -- ensure that this key is present if 'strict' is nil
module=true, })
module_strict=(strict and true or false) -- ensure that this key is present if 'strict' is nil
})
return env return env
else else
if strict and not scripts[path]:get_flags().module then if strict and not scripts[path]:get_flags().module then