2020-10-25 19:05:08 +01:00
|
|
|
--[[
|
|
|
|
=====================================================================
|
|
|
|
** More Blocks **
|
|
|
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
|
|
|
|
|
|
|
Copyright © 2011-2020 Hugo Locurcio and contributors.
|
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
=====================================================================
|
|
|
|
--]]
|
|
|
|
|
|
|
|
moreblocks = {}
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath("moreblocks")
|
|
|
|
|
2021-11-16 11:03:22 +01:00
|
|
|
moreblocks.S = minetest.get_translator("moreblocks")
|
2020-10-25 19:05:08 +01:00
|
|
|
|
|
|
|
dofile(modpath .. "/config.lua")
|
2021-09-05 16:06:04 +02:00
|
|
|
dofile(modpath .. "/sounds.lua")
|
2020-10-25 19:05:08 +01:00
|
|
|
dofile(modpath .. "/circular_saw.lua")
|
|
|
|
dofile(modpath .. "/stairsplus/init.lua")
|
2021-09-05 16:06:04 +02:00
|
|
|
|
|
|
|
if minetest.get_modpath("default") then
|
|
|
|
dofile(modpath .. "/nodes.lua")
|
|
|
|
dofile(modpath .. "/redefinitions.lua")
|
|
|
|
dofile(modpath .. "/crafting.lua")
|
|
|
|
dofile(modpath .. "/aliases.lua")
|
|
|
|
end
|