supress undeclared variable access warnings in cases of intentional declaration checks

This commit is contained in:
Tim
2015-02-05 09:47:37 +01:00
parent 3fd53dfe95
commit 49e82a604b
7 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
local modpath = minetest.get_modpath("technic_worldgen")
technic = technic or {}
technic = rawget(_G, "technic") or {}
technic.worldgen = {}
if intllib then
if rawget(_G, "intllib") then
technic.worldgen.gettext = intllib.Getter()
else
technic.worldgen.gettext = function(s) return s end