2014-03-09 10:38:18 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
=====================================================================
|
2014-12-27 20:30:19 +01:00
|
|
|
** More Blocks **
|
|
|
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
|
|
|
|
2020-01-01 04:09:24 +01:00
|
|
|
Copyright © 2011-2020 Hugo Locurcio and contributors.
|
2015-01-11 22:21:33 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
2015-01-12 17:46:22 +01:00
|
|
|
=====================================================================
|
2014-03-09 10:38:18 +01:00
|
|
|
--]]
|
|
|
|
|
|
|
|
moreblocks = {}
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath("moreblocks")
|
|
|
|
|
2021-11-14 02:14:19 +01:00
|
|
|
moreblocks.S = minetest.get_translator("moreblocks")
|
2019-03-03 20:02:40 +01:00
|
|
|
|
2014-05-02 11:45:03 +02:00
|
|
|
dofile(modpath .. "/config.lua")
|
2021-08-26 20:46:07 +02:00
|
|
|
dofile(modpath .. "/sounds.lua")
|
2014-05-02 11:45:03 +02:00
|
|
|
dofile(modpath .. "/circular_saw.lua")
|
|
|
|
dofile(modpath .. "/stairsplus/init.lua")
|
2021-08-26 20:46:07 +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
|