2013-07-17 21:34:35 +02:00
|
|
|
local modpath = minetest.get_modpath("technic_worldgen")
|
2013-03-30 11:36:45 +01:00
|
|
|
|
2015-02-05 09:47:37 +01:00
|
|
|
technic = rawget(_G, "technic") or {}
|
2015-02-05 10:07:38 +01:00
|
|
|
technic.worldgen = {
|
|
|
|
gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
|
|
|
|
}
|
2014-04-16 19:10:00 +02:00
|
|
|
|
2014-07-26 20:03:07 +02:00
|
|
|
dofile(modpath.."/config.lua")
|
2013-03-30 11:36:45 +01:00
|
|
|
dofile(modpath.."/nodes.lua")
|
|
|
|
dofile(modpath.."/oregen.lua")
|
|
|
|
dofile(modpath.."/crafts.lua")
|
2013-07-17 21:34:35 +02:00
|
|
|
|
|
|
|
-- Rubber trees, moretrees also supplies these
|
|
|
|
if not minetest.get_modpath("moretrees") then
|
|
|
|
dofile(modpath.."/rubber.lua")
|
2014-04-21 21:24:01 +02:00
|
|
|
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")
|
2013-07-17 21:34:35 +02:00
|
|
|
end
|
|
|
|
|
2013-10-29 11:18:08 +01:00
|
|
|
-- mg suppport
|
|
|
|
if minetest.get_modpath("mg") then
|
|
|
|
dofile(modpath.."/mg.lua")
|
|
|
|
end
|
|
|
|
|