1
0
mirror of https://github.com/kepler155c/opus synced 2026-06-04 03:32:09 +00:00

input redo + env pollution

This commit is contained in:
kepler155c@gmail.com
2017-10-20 04:23:17 -04:00
parent fb0f3e567a
commit 31b3787695
9 changed files with 84 additions and 67 deletions
+2 -1
View File
@@ -329,7 +329,8 @@ end
local tArgs = { ... }
if #tArgs > 0 then
return run(_ENV, ...)
local env = setmetatable(Util.shallowCopy(sandboxEnv), { __index = _G })
return run(env, ...)
end
local Config = require('config')