Xanthin
2014-04-16 39c41a06f4993dc17507fb480fcabbca319ceff7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local modpath = minetest.get_modpath("technic_worldgen")
 
technic.worldgen = {}
if intllib then
    technic.worldgen.gettext = intllib.Getter()
else
    technic.worldgen.gettext = function(s) return s end
end
 
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