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
1 changed files with 4 additions and 1 deletions

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