init.lua 416 B

12345678910111213141516
  1. minetest.log("verbose", "[MOD] Loading maple module...")
  2. local S = minetest.get_translator(minetest.get_current_modname())
  3. local modpath = minetest.get_modpath(minetest.get_current_modname())
  4. maple = {
  5. get_translator = S,
  6. path = modpath
  7. }
  8. dofile(modpath .. "/trees.lua")
  9. dofile(modpath .. "/nodes.lua")
  10. dofile(modpath .. "/decorations.lua")
  11. dofile(modpath .. "/crafts.lua")
  12. dofile(modpath .. "/intermod.lua")