maple-cd2025/init.lua
Olivier Dragon 56ec0692c6 Update dependencies
and use better method to test for module presence.
2022-02-03 10:01:36 -05:00

16 lines
416 B
Lua

minetest.log("verbose", "[MOD] Loading maple module...")
local S = minetest.get_translator(minetest.get_current_modname())
local modpath = minetest.get_modpath(minetest.get_current_modname())
maple = {
get_translator = S,
path = modpath
}
dofile(modpath .. "/trees.lua")
dofile(modpath .. "/nodes.lua")
dofile(modpath .. "/decorations.lua")
dofile(modpath .. "/crafts.lua")
dofile(modpath .. "/intermod.lua")