2014-03-09 10:38:18 +01:00
|
|
|
--[[
|
2014-12-27 20:30:19 +01:00
|
|
|
======================================================================
|
|
|
|
** More Blocks **
|
|
|
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
|
|
|
|
2015-01-05 12:33:11 +01:00
|
|
|
Copyright (c) 2011-2015 Calinou and contributors.
|
2014-12-27 20:30:19 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.txt for more information.
|
|
|
|
======================================================================
|
2014-03-09 10:38:18 +01:00
|
|
|
--]]
|
|
|
|
|
|
|
|
moreblocks = {}
|
|
|
|
|
2014-12-27 20:30:19 +01:00
|
|
|
local S
|
|
|
|
if minetest.get_modpath("intllib") then
|
|
|
|
S = intllib.Getter()
|
2014-03-09 10:38:18 +01:00
|
|
|
else
|
|
|
|
S = function(s) return s end
|
|
|
|
end
|
2014-12-27 20:30:19 +01:00
|
|
|
moreblocks.intllib = S
|
2014-03-09 10:38:18 +01:00
|
|
|
|
|
|
|
local modpath = minetest.get_modpath("moreblocks")
|
|
|
|
|
2014-05-02 11:45:03 +02:00
|
|
|
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")
|
2014-03-09 10:38:18 +01:00
|
|
|
|
2014-04-30 20:04:26 +02:00
|
|
|
if minetest.setting_getbool("log_mods") then
|
2014-12-27 20:30:19 +01:00
|
|
|
minetest.log("action", S("[moreblocks] loaded."))
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|