mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
24 lines
510 B
Lua
24 lines
510 B
Lua
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
|
|
|