mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-05 06:53:52 +01:00
12 lines
281 B
Lua
12 lines
281 B
Lua
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
|
|
|