mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-07 19:10:23 +01:00
715ca50df1
Adaptation des variables global en local pour la version 4.11
33 lines
889 B
Lua
Executable File
33 lines
889 B
Lua
Executable File
--[[
|
|
-- More Blocks (moreblocks) by Calinou
|
|
-- Licensed under the zlib/ license for code and CC BY-SA 3.0 for textures, see LICENSE.txt for info.
|
|
--]]
|
|
|
|
moreblocks = {}
|
|
|
|
-- Load translation library if intllib is installed
|
|
|
|
local S -- Load translation library if intllib is installed:
|
|
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
|
|
end
|
|
moreblocks.gettext = S
|
|
|
|
local modpath = minetest.get_modpath("moreblocks")
|
|
|
|
dofile(modpath .. "/config.lua")
|
|
dofile(modpath .. "/circular_saw.lua")
|
|
dofile(modpath .. "/stairsplus/init.lua")
|
|
dofile(modpath .. "/nodes.lua")
|
|
dofile(modpath .. "/redefinitions.lua")
|
|
dofile(modpath .. "/crafting.lua")
|
|
dofile(modpath .. "/aliases.lua")
|
|
|
|
if minetest.setting_getbool("log_mods") then
|
|
print(S("[moreblocks] loaded."))
|
|
end
|
|
|