mirror of
https://github.com/lune-org/docs.git
synced 2025-04-04 18:40:59 +01:00
fix(module): return the actual env in sandboxGetfenv
This commit is contained in:
parent
cb9471737b
commit
215ccb87a1
1 changed files with 5 additions and 1 deletions
|
@ -80,7 +80,11 @@ local function discoverAndReadScript(filePath: string): string
|
||||||
end
|
end
|
||||||
|
|
||||||
local function sandboxGetfenv(): {}
|
local function sandboxGetfenv(): {}
|
||||||
return table.freeze(SANDBOXED_ENV)
|
if table.isfrozen(SANDBOXED_ENV) then
|
||||||
|
return SANDBOXED_ENV.environment
|
||||||
|
end
|
||||||
|
|
||||||
|
return {}
|
||||||
end
|
end
|
||||||
|
|
||||||
local function sandboxSetfenv(env: {}): never
|
local function sandboxSetfenv(env: {}): never
|
||||||
|
|
Loading…
Add table
Reference in a new issue