mirror of
https://github.com/MinetestForFun/stacktraceplus.git
synced 2024-11-18 08:00:32 +01:00
Define rawlen as en empty table if it is undefined
- Minetest won't let us define something global unless it's a table. Shall it be so. - This prevents Minetest from complaining about StackTracePlus' attempt to define "rawlen"
This commit is contained in:
parent
5194081791
commit
37f9b83b77
6
init.lua
6
init.lua
@ -2,6 +2,12 @@ local secenv = _G
|
||||
local modname = minetest.get_current_modname()
|
||||
local sec = (minetest.setting_get('secure.enable_security') == 'true')
|
||||
local ie
|
||||
|
||||
-- //MFF (Mg|01/07/2016 for classic#508, hg#104, sb#166, creative#68)
|
||||
if (rawget(_G, "rawlen") == nil) then
|
||||
rawlen = {} -- That's extremely bad, but our only mean of stopping StackTracePlus from complaining about rawlen being undefined
|
||||
end
|
||||
|
||||
if sec then
|
||||
ie = minetest.request_insecure_environment()
|
||||
if ie == nil then
|
||||
|
Loading…
Reference in New Issue
Block a user