From 02b7a666f6e4e3253c44955fcfe9eb8fffd3eb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Mart=C3=ADnez?= Date: Tue, 5 Mar 2013 09:01:25 -0200 Subject: [PATCH] Removed unused return value from Getter() --- intllib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intllib.lua b/intllib.lua index 18bd0b2..732aa9d 100644 --- a/intllib.lua +++ b/intllib.lua @@ -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;