123456789101112131415161718192021222324252627282930 |
- --[[
- =====================================================================
- ** 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")
- local S, NS = dofile(modpath .. "/intllib.lua")
- moreblocks.S = S
- moreblocks.NS = NS
- dofile(modpath .. "/config.lua")
- dofile(modpath .. "/sounds.lua")
- dofile(modpath .. "/circular_saw.lua")
- dofile(modpath .. "/stairsplus/init.lua")
- if minetest.get_modpath("default") then
- dofile(modpath .. "/nodes.lua")
- dofile(modpath .. "/redefinitions.lua")
- dofile(modpath .. "/crafting.lua")
- dofile(modpath .. "/aliases.lua")
- end
|