mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-15 23:10:18 +01:00
33 lines
954 B
Lua
33 lines
954 B
Lua
--[[
|
|
=====================================================================
|
|
** More Blocks **
|
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
|
|
|
Copyright (c) 2011-2017 Hugo Locurcio and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
=====================================================================
|
|
--]]
|
|
|
|
moreblocks = {}
|
|
moreblocks.modname = minetest.get_current_modname()
|
|
moreblocks.modpath = minetest.get_modpath(moreblocks.modname)
|
|
|
|
-- Load support for intllib.
|
|
local MP = moreblocks.modpath
|
|
local S = dofile(MP .. "/intllib.lua")
|
|
|
|
moreblocks.intllib = S
|
|
|
|
-- Load mod's modules
|
|
dofile(MP .. "/config.lua")
|
|
dofile(MP .. "/circular_saw.lua")
|
|
dofile(MP .. "/stairsplus/init.lua")
|
|
dofile(MP .. "/nodes.lua")
|
|
dofile(MP .. "/redefinitions.lua")
|
|
dofile(MP .. "/crafting.lua")
|
|
dofile(MP .. "/aliases.lua")
|
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
minetest.log("action", S("[MOD] moreblocks loaded."))
|
|
end
|