diff options
author | Tim <t4im@users.noreply.github.com> | 2015-02-05 09:47:37 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-02-05 09:47:37 +0100 |
commit | 49e82a604bd947813ec93daeafcdfc188765c597 (patch) | |
tree | bc8e3b69d6b76eb2713ecd1952bc25d387fe9b94 /technic_chests/register.lua | |
parent | 3fd53dfe95389e6e9d66f5fbd1b623c4092c06b7 (diff) |
supress undeclared variable access warnings in cases of intentional declaration checks
Diffstat (limited to 'technic_chests/register.lua')
-rw-r--r-- | technic_chests/register.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic_chests/register.lua b/technic_chests/register.lua index a6038ef..68ee6b1 100644 --- a/technic_chests/register.lua +++ b/technic_chests/register.lua @@ -1,7 +1,7 @@ local S -if intllib then +if rawget(_G, "intllib") then S = intllib.Getter() else S = function(s) return s end |