summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-12-27 01:02:35 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-12-27 01:02:35 -0500
commit127caef5b3385af4136a22b22940876a9e2b1c14 (patch)
tree91199d3f6847650e626ba59cc92f81e906799aab
parentef9c129aa2b864170b9887723fe8c916adf5eca6 (diff)
downloadunifieddyes-127caef5b3385af4136a22b22940876a9e2b1c14.tar
unifieddyes-127caef5b3385af4136a22b22940876a9e2b1c14.tar.gz
unifieddyes-127caef5b3385af4136a22b22940876a9e2b1c14.tar.bz2
unifieddyes-127caef5b3385af4136a22b22940876a9e2b1c14.tar.xz
unifieddyes-127caef5b3385af4136a22b22940876a9e2b1c14.zip
use current intllib API
-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.