mirror of
https://github.com/minetest-mods/intllib.git
synced 2025-07-01 23:50:23 +02:00
Removed unused return value from Getter()
This commit is contained in:
@ -71,7 +71,7 @@ function load_strings ( modname, lang )
|
|||||||
if (not f) then
|
if (not f) then
|
||||||
f, e = io.open(minetest.get_modpath("intllib").."/locale/"..modname.."/"..lang..".txt");
|
f, e = io.open(minetest.get_modpath("intllib").."/locale/"..modname.."/"..lang..".txt");
|
||||||
if (not f) then
|
if (not f) then
|
||||||
return nil, "Could not load '"..LANG.."' texts: "..e;
|
return nil;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local strings;
|
local strings;
|
||||||
|
Reference in New Issue
Block a user