forked from minetest-mods/technic
17 lines
364 B
Lua
17 lines
364 B
Lua
local modpath = minetest.get_modpath("technic_worldgen")
|
|
|
|
dofile(modpath.."/nodes.lua")
|
|
dofile(modpath.."/oregen.lua")
|
|
dofile(modpath.."/crafts.lua")
|
|
|
|
-- Rubber trees, moretrees also supplies these
|
|
if not minetest.get_modpath("moretrees") then
|
|
dofile(modpath.."/rubber.lua")
|
|
end
|
|
|
|
-- mg suppport
|
|
if minetest.get_modpath("mg") then
|
|
dofile(modpath.."/mg.lua")
|
|
end
|
|
|