add bootup tests for dependent mods (#15)

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
This commit is contained in:
Buckaroo Banzai
2024-08-16 21:00:36 +02:00
committed by GitHub
parent dc87e255b7
commit cb6471e266
15 changed files with 10996 additions and 2 deletions

View File

@@ -42,4 +42,9 @@ minetest.register_on_mods_loaded(function()
end
end)
dofile(modpath .. "/src/commands.lua")
dofile(modpath .. "/src/commands.lua")
if minetest.get_modpath("mtt") then
-- register tests
dofile(modpath .. "/mtt.lua")
end