mirror of
https://github.com/mt-mods/unifieddyes.git
synced 2024-11-22 07:23:48 +01:00
use current intllib API
This commit is contained in:
parent
ef9c129aa2
commit
127caef5b3
@ -1,2 +1,4 @@
|
||||
default
|
||||
dye
|
||||
intllib?
|
||||
|
||||
|
8
init.lua
8
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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user