debugger/init.lua
2017-02-04 18:53:32 -08:00

28 lines
615 B
Lua

-- debugger/init.lua
debugger = {}
debugger.modpath = minetest.get_modpath("debugger")
local modpath = debugger.modpath
-- Logger
function debugger.log(content, log_type)
assert(content, "debugger.log: content nil")
if log_type == nil then log_type = "action" end
minetest.log(log_type, "[debugger] "..content)
end
-- Load Settings
local Settings = Settings(modpath.."/config.txt"):to_table()
if Settings then
debugger.CREATIVE = Settings.not_in_creative or 1
else
debugger.CREATIVE = 1
end
-- Load formspec editor
if Settings.formspec_editor ~= false then
dofile(modpath.."/form_editor.lua")
end