Buckaroo Banzai b4cde13412
refactor integration tests (#281)
* refactor integration tests

* set deprecated_lua_api_handling to 'error'

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2022-08-04 08:47:39 +02:00

61 lines
1.3 KiB
Lua

-- Minetest 0.4.7 mod: technic
-- namespace: technic
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
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.get_modpath("mtt") then
dofile(modpath.."/integration_test.lua")
end