forked from minetest-mods/unified_inventory
supress intllib check warning, this fixes #19
This commit is contained in:
parent
1a962542e6
commit
1a1bfc3839
2
api.lua
2
api.lua
@ -1,5 +1,5 @@
|
||||
local S
|
||||
if intllib then
|
||||
if rawget(_G, "intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
|
2
bags.lua
2
bags.lua
@ -4,7 +4,7 @@
|
||||
-- License: GPLv3
|
||||
|
||||
local S
|
||||
if intllib then
|
||||
if rawget(_G, "intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
|
@ -1,5 +1,5 @@
|
||||
local S
|
||||
if intllib then
|
||||
if rawget(_G, "intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
|
@ -1,5 +1,5 @@
|
||||
local S
|
||||
if intllib then
|
||||
if rawget(_G, "intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
|
@ -1,5 +1,5 @@
|
||||
local S
|
||||
if intllib then
|
||||
if rawget(_G, "intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
|
Loading…
Reference in New Issue
Block a user