From 49e82a604bd947813ec93daeafcdfc188765c597 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 5 Feb 2015 09:47:37 +0100 Subject: supress undeclared variable access warnings in cases of intentional declaration checks --- technic_worldgen/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'technic_worldgen') diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua index 73e9fc7..bee44c4 100644 --- a/technic_worldgen/init.lua +++ b/technic_worldgen/init.lua @@ -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 -- cgit v1.2.3