improve startup, dont rely on debug (cbor)

This commit is contained in:
kepler155c@gmail.com
2019-10-28 20:01:57 -06:00
parent 6e6d4b81cd
commit 774d3ed415
3 changed files with 103 additions and 71 deletions

View File

@@ -14,7 +14,7 @@ end
local setmetatable = setmetatable;
local getmetatable = getmetatable;
local dbg_getmetatable = debug.getmetatable;
local dbg_getmetatable = debug and debug.getmetatable;
local assert = assert;
local error = error;
local type = type;