1
0
mirror of https://github.com/minetest-mods/intllib.git synced 2025-01-23 00:10:24 +01:00

Print mod source that called deprecated intllib.Getter.

This commit is contained in:
AntumDeluge 2017-07-05 14:53:09 -07:00 committed by Diego Martínez
parent 0c308d02ac
commit d01a9c666f

View File

@ -65,8 +65,11 @@ end
function intllib.Getter(modname)
local info = debug and debug.getinfo and debug.getinfo(2)
local loc = info and info.short_src..":"..info.currentline
minetest.log("deprecated", "intllib.Getter is deprecated."
.."Please use intllib.make_gettext_pair instead.")
.." Please use intllib.make_gettext_pair instead."
..(info and " (called from "..loc..")" or "")
return Getter(modname)
end