blob: 16334ffc60f5d646cb23c2e11901d35ee9aeb071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
|