init.lua 597 B

1234567891011121314
  1. minetest.log("action", "[MOD]"..minetest.get_current_modname().." -- start loading from "..minetest.get_modpath(minetest.get_current_modname()))
  2. if minetest.get_modpath("moretrees") ~= nil then
  3. dofile(minetest.get_modpath("farming_integrate") .. "/moretrees.lua")
  4. end
  5. if minetest.get_modpath("woodsoil") ~= nil then
  6. dofile(minetest.get_modpath("farming_integrate") .. "/woodsoil.lua")
  7. end
  8. if minetest.get_modpath("ethereal") ~= nil then
  9. dofile(minetest.get_modpath("farming_integrate") .. "/ethereal.lua")
  10. end
  11. minetest.log("action", "[MOD]"..minetest.get_current_modname().." -- loaded ")