-- Minetest 0.4.7 mod: technic -- namespace: technic -- (c) 2012-2013 by RealBadAngel local load_start = os.clock() technic = rawget(_G, "technic") or {} technic.plus = true technic.creative_mode = minetest.settings:get_bool("creative_mode") local modpath = minetest.get_modpath("technic") technic.modpath = modpath technic.getter = minetest.get_translator(minetest.get_current_modname()) local S = technic.getter -- Read configuration file dofile(modpath.."/config.lua") -- Lag monitoring dofile(modpath.."/max_lag.lua") -- Helper functions dofile(modpath.."/helpers.lua") -- Register functions dofile(modpath.."/register.lua") -- Compatibility shims for tools dofile(modpath.."/machines/compat/tools.lua") -- Items dofile(modpath.."/items.lua") -- Craft recipes for items dofile(modpath.."/crafts.lua") -- Radiation dofile(modpath.."/radiation.lua") -- Machines dofile(modpath.."/machines/init.lua") -- Tools dofile(modpath.."/tools/init.lua") -- Aliases for legacy node/item names dofile(modpath.."/legacy.lua") -- visual effects dofile(modpath.."/effects.lua") if minetest.settings:get_bool("log_mods") then print(S("[Technic] Loaded in @1 seconds", os.clock() - load_start)) end if minetest.settings:get_bool("enable_technic_integration_test") then dofile(modpath.."/integration_test.lua") end