fediauth/init.lua

15 lines
303 B
Lua
Raw Normal View History

2023-01-28 11:04:14 +00:00
local MP = minetest.get_modpath("otp")
otp = {
-- mod storage
storage = minetest.get_mod_storage(),
-- baseXX functions
basexx = loadfile(MP.."/basexx.lua")()
}
dofile(MP.."/functions.lua")
2023-01-28 16:25:39 +00:00
if minetest.get_modpath("mtt") and mtt.enabled then
dofile(MP.."/functions.spec.lua")
end