minetest-mods/moreblocks/init.lua

26 lines
759 B
Lua
Raw Normal View History

2019-12-14 17:47:31 +01:00
--[[
=====================================================================
** More Blocks **
By Calinou, with the help of ShadowNinja and VanessaE.
2021-05-16 13:42:56 +02:00
Copyright © 2011-2020 Hugo Locurcio and contributors.
2019-12-14 17:47:31 +01:00
Licensed under the zlib license. See LICENSE.md for more information.
=====================================================================
--]]
moreblocks = {}
local modpath = minetest.get_modpath("moreblocks")
2021-05-16 13:42:56 +02:00
local S, NS = dofile(modpath .. "/intllib.lua")
moreblocks.S = S
moreblocks.NS = NS
2019-12-14 17:47:31 +01:00
dofile(modpath .. "/config.lua")
dofile(modpath .. "/circular_saw.lua")
dofile(modpath .. "/stairsplus/init.lua")
dofile(modpath .. "/nodes.lua")
2021-05-16 13:42:56 +02:00
dofile(modpath .. "/redefinitions.lua")
2019-12-14 17:47:31 +01:00
dofile(modpath .. "/crafting.lua")
dofile(modpath .. "/aliases.lua")