summaryrefslogtreecommitdiff
path: root/wrench/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 /wrench/init.lua
parentc17732b16ff8e5ba889bf913d84a72b4efe36255 (diff)
reduce intllib code
Diffstat (limited to 'wrench/init.lua')
-rw-r--r--wrench/init.lua7
1 files changed, 1 insertions, 6 deletions
diff --git a/wrench/init.lua b/wrench/init.lua
index f971970..fbe1e10 100644
--- a/wrench/init.lua
+++ b/wrench/init.lua
@@ -20,12 +20,7 @@ dofile(modpath.."/support.lua")
dofile(modpath.."/technic.lua")
-- Boilerplate to support localized strings if intllib mod is installed.
-local S
-if rawget(_G, "intllib") then
- S = intllib.Getter()
-else
- S = function(s) return s end
-end
+local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
local function get_meta_type(name, metaname)
local def = wrench.registered_nodes[name]