Tim
2015-02-05 41a10a86d5d2257778b2e422b8a560ed8ea2cbba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
local modpath = minetest.get_modpath("technic_worldgen")
 
technic = rawget(_G, "technic") or {}
technic.worldgen = {
    gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
}
 
dofile(modpath.."/config.lua")
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")
else
    -- older versions of technic provided rubber trees regardless
    minetest.register_alias("technic:rubber_sapling", "moretrees:rubber_tree_sapling")
    minetest.register_alias("technic:rubber_tree_empty", "moretrees:rubber_tree_trunk_empty")
end
 
-- mg suppport
if minetest.get_modpath("mg") then
    dofile(modpath.."/mg.lua")
end