summaryrefslogtreecommitdiff
path: root/technic_worldgen/init.lua
diff options
context:
space:
mode:
authorTim <t4im@users.noreply.github.com>2015-02-05 10:07:38 +0100
committerTim <t4im@users.noreply.github.com>2015-02-05 10:09:14 +0100
commit41a10a86d5d2257778b2e422b8a560ed8ea2cbba (patch)
tree0b52a91fb85602e0f26ca09e5b89d18495672bfc /technic_worldgen/init.lua
parentc17732b16ff8e5ba889bf913d84a72b4efe36255 (diff)
reduce intllib code
Diffstat (limited to 'technic_worldgen/init.lua')
-rw-r--r--technic_worldgen/init.lua9
1 files changed, 3 insertions, 6 deletions
diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua
index bee44c4..2f36920 100644
--- a/technic_worldgen/init.lua
+++ b/technic_worldgen/init.lua
@@ -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")