diff options
author | Tim <t4im@users.noreply.github.com> | 2015-02-05 10:07:38 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-02-05 10:09:14 +0100 |
commit | 41a10a86d5d2257778b2e422b8a560ed8ea2cbba (patch) | |
tree | 0b52a91fb85602e0f26ca09e5b89d18495672bfc /technic_chests | |
parent | c17732b16ff8e5ba889bf913d84a72b4efe36255 (diff) |
reduce intllib code
Diffstat (limited to 'technic_chests')
-rw-r--r-- | technic_chests/register.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/technic_chests/register.lua b/technic_chests/register.lua index 68ee6b1..14baa95 100644 --- a/technic_chests/register.lua +++ b/technic_chests/register.lua @@ -1,11 +1,4 @@ - - -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 chest_mark_colors = { {"black", S("Black")}, |