Cristiano Magro
2020-10-14 d781261523f49191a87f8eda4b8c5ea01272f60d
technic_worldgen/init.lua
@@ -1,12 +1,11 @@
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
technic = rawget(_G, "technic") or {}
technic.worldgen = {
   gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
}
dofile(modpath.."/config.lua")
dofile(modpath.."/nodes.lua")
dofile(modpath.."/oregen.lua")
dofile(modpath.."/crafts.lua")