1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-15 06:45:22 +01:00

Minor update of moreores

- Moreores mod updated, will be soon rewritten
This commit is contained in:
LeMagnesium
2015-03-21 17:22:22 +01:00
parent dba0ef5fab
commit c72b671dd8
2 changed files with 29 additions and 5 deletions

View File

@@ -9,11 +9,10 @@ Licensed under the zlib license. See LICENSE.md for more information.
--]]
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
local modpath = minetest.get_modpath("moreores")