mirror of
https://github.com/minetest-mods/intllib.git
synced 2025-05-10 20:40:26 +02:00
Removed unused return value from Getter()
This commit is contained in:
parent
a1948fb6d7
commit
02b7a666f6
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user