mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-30 09:27:36 +01:00
supress undeclared variable access warnings in cases of intentional declaration checks
This commit is contained in:
parent
3fd53dfe95
commit
49e82a604b
@ -1,12 +1,12 @@
|
|||||||
--Minetest 0.4.7 mod: concrete
|
--Minetest 0.4.7 mod: concrete
|
||||||
--(c) 2013 by RealBadAngel <mk@realbadangel.pl>
|
--(c) 2013 by RealBadAngel <mk@realbadangel.pl>
|
||||||
|
|
||||||
local technic = technic or {}
|
local technic = rawget(_G, "technic") or {}
|
||||||
technic.concrete_posts = {}
|
technic.concrete_posts = {}
|
||||||
|
|
||||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
local S
|
local S
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
S = intllib.Getter()
|
S = intllib.Getter()
|
||||||
else
|
else
|
||||||
S = function(s) return s end
|
S = function(s) return s end
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- namespace: technic
|
-- namespace: technic
|
||||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
local S
|
local S
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
S = intllib.Getter()
|
S = intllib.Getter()
|
||||||
else
|
else
|
||||||
S = function(s) return s end
|
S = function(s) return s end
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- namespace: technic
|
-- namespace: technic
|
||||||
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
|
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
|
||||||
|
|
||||||
technic = technic or {}
|
technic = rawget(_G, "technic") or {}
|
||||||
|
|
||||||
technic.tube_inject_item = pipeworks.tube_inject_item or function (pos, start_pos, velocity, item)
|
technic.tube_inject_item = pipeworks.tube_inject_item or function (pos, start_pos, velocity, item)
|
||||||
local tubed = pipeworks.tube_item(vector.new(pos), item)
|
local tubed = pipeworks.tube_item(vector.new(pos), item)
|
||||||
@ -16,7 +16,7 @@ local modpath = minetest.get_modpath("technic")
|
|||||||
technic.modpath = modpath
|
technic.modpath = modpath
|
||||||
|
|
||||||
-- Boilerplate to support intllib
|
-- Boilerplate to support intllib
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
technic.getter = intllib.Getter()
|
technic.getter = intllib.Getter()
|
||||||
else
|
else
|
||||||
technic.getter = function(s) return s end
|
technic.getter = function(s) return s end
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
modpath = minetest.get_modpath("technic_chests")
|
modpath = minetest.get_modpath("technic_chests")
|
||||||
|
|
||||||
technic = technic or {}
|
technic = rawget(_G, "technic") or {}
|
||||||
technic.chests = {}
|
technic.chests = {}
|
||||||
|
|
||||||
dofile(modpath.."/common.lua")
|
dofile(modpath.."/common.lua")
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
local S
|
local S
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
S = intllib.Getter()
|
S = intllib.Getter()
|
||||||
else
|
else
|
||||||
S = function(s) return s end
|
S = function(s) return s end
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
local modpath = minetest.get_modpath("technic_worldgen")
|
local modpath = minetest.get_modpath("technic_worldgen")
|
||||||
|
|
||||||
technic = technic or {}
|
technic = rawget(_G, "technic") or {}
|
||||||
technic.worldgen = {}
|
technic.worldgen = {}
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
technic.worldgen.gettext = intllib.Getter()
|
technic.worldgen.gettext = intllib.Getter()
|
||||||
else
|
else
|
||||||
technic.worldgen.gettext = function(s) return s end
|
technic.worldgen.gettext = function(s) return s end
|
||||||
|
@ -21,7 +21,7 @@ dofile(modpath.."/technic.lua")
|
|||||||
|
|
||||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
local S
|
local S
|
||||||
if intllib then
|
if rawget(_G, "intllib") then
|
||||||
S = intllib.Getter()
|
S = intllib.Getter()
|
||||||
else
|
else
|
||||||
S = function(s) return s end
|
S = function(s) return s end
|
||||||
|
Loading…
Reference in New Issue
Block a user