Removed unused return value from Getter()

This commit is contained in:
Diego Martínez 2013-03-05 09:01:25 -02:00
parent a1948fb6d7
commit 02b7a666f6
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ function load_strings ( modname, lang )
if (not f) then
f, e = io.open(minetest.get_modpath("intllib").."/locale/"..modname.."/"..lang..".txt");
if (not f) then
return nil, "Could not load '"..LANG.."' texts: "..e;
return nil;
end
end
local strings;