technic/technic_worldgen/init.lua

17 lines
364 B
Lua
Raw Normal View History

2013-07-17 23:34:35 +04:00
local modpath = minetest.get_modpath("technic_worldgen")
2013-03-30 14:36:45 +04:00
dofile(modpath.."/nodes.lua")
dofile(modpath.."/oregen.lua")
dofile(modpath.."/crafts.lua")
2013-07-17 23:34:35 +04:00
-- Rubber trees, moretrees also supplies these
if not minetest.get_modpath("moretrees") then
dofile(modpath.."/rubber.lua")
end
2013-10-29 14:18:08 +04:00
-- mg suppport
if minetest.get_modpath("mg") then
dofile(modpath.."/mg.lua")
end