SmallJoker
2013-12-01 7a3cd495972f2dc399d7af7f596a6d9a4a5c728b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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