1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-21 17:15:32 +01:00

Moreblocks' update

- Moreblocks' update to use last version's nodes and features
This commit is contained in:
LeMagnesium
2015-01-15 19:12:20 +01:00
parent cb86fa2008
commit c430709474
88 changed files with 915 additions and 82 deletions

23
mods/moreblocks/init.lua Executable file → Normal file
View File

@@ -1,20 +1,22 @@
--[[
-- 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.
=====================================================================
** More Blocks **
By Calinou, with the help of ShadowNinja and VanessaE.
Copyright (c) 2011-2015 Calinou and contributors.
Licensed under the zlib license. See LICENSE.md for more information.
=====================================================================
--]]
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())
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
moreblocks.gettext = S
moreblocks.intllib = S
local modpath = minetest.get_modpath("moreblocks")
@@ -27,6 +29,5 @@ dofile(modpath .. "/crafting.lua")
dofile(modpath .. "/aliases.lua")
if minetest.setting_getbool("log_mods") then
print(S("[moreblocks] loaded."))
minetest.log("action", S("[moreblocks] loaded."))
end