summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--depends.txt2
-rw-r--r--init.lua8
2 files changed, 5 insertions, 5 deletions
diff --git a/depends.txt b/depends.txt
index 2717bef..b08c42c 100644
--- a/depends.txt
+++ b/depends.txt
@@ -1,2 +1,4 @@
default
dye
+intllib?
+
diff --git a/init.lua b/init.lua
index e8c36b7..fc36199 100644
--- a/init.lua
+++ b/init.lua
@@ -31,14 +31,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
-- Boilerplate to support localized strings if intllib mod is installed.
local S
-if (minetest.get_modpath("intllib")) then
- dofile(minetest.get_modpath("intllib").."/intllib.lua")
- S = intllib.Getter(minetest.get_current_modname())
+if minetest.get_modpath("intllib") then
+ S = intllib.Getter()
else
- S = function ( s ) return s end
+ S = function(s) return s end
end
-
-- Items/recipes needed to generate the few base colors that are not
-- provided by the standard dyes mod.