Merge pull request #20 from LeMagnesium/intllib_global_variables

Replaced calls for IntLlib's global variable
This commit is contained in:
rubenwardy 2015-05-08 18:32:50 +01:00
commit 80990e12e1
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
-- Boilerplate to support localized strings if intllib mod is installed.
local S = 0
if (intllib) then
if rawget(_G, "intllib") then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else

View File

@ -13,7 +13,7 @@ dofile(minetest.get_modpath("food_basic").."/ingredients.lua")
-- Boilerplate to support localized strings if intllib mod is installed.
local S = 0
if (intllib) then
if rawget(_G, "intllib") then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else