summaryrefslogtreecommitdiff
path: root/technic_worldgen/init.lua
blob: caf0f89c7a81a42e5eb6b3eef2201874377f18df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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