reduce intllib code

This commit is contained in:
Tim
2015-02-05 10:07:38 +01:00
parent c17732b16f
commit 41a10a86d5
6 changed files with 9 additions and 38 deletions

View File

@ -1,12 +1,9 @@
local modpath = minetest.get_modpath("technic_worldgen")
technic = rawget(_G, "technic") or {}
technic.worldgen = {}
if rawget(_G, "intllib") then
technic.worldgen.gettext = intllib.Getter()
else
technic.worldgen.gettext = function(s) return s end
end
technic.worldgen = {
gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
}
dofile(modpath.."/config.lua")
dofile(modpath.."/nodes.lua")