init.lua 759 B

1234567891011121314151617181920212223242526
  1. --[[
  2. =====================================================================
  3. ** More Blocks **
  4. By Calinou, with the help of ShadowNinja and VanessaE.
  5. Copyright © 2011-2020 Hugo Locurcio and contributors.
  6. Licensed under the zlib license. See LICENSE.md for more information.
  7. =====================================================================
  8. --]]
  9. moreblocks = {}
  10. local modpath = minetest.get_modpath("moreblocks")
  11. local S, NS = dofile(modpath .. "/intllib.lua")
  12. moreblocks.S = S
  13. moreblocks.NS = NS
  14. dofile(modpath .. "/config.lua")
  15. dofile(modpath .. "/circular_saw.lua")
  16. dofile(modpath .. "/stairsplus/init.lua")
  17. dofile(modpath .. "/nodes.lua")
  18. dofile(modpath .. "/redefinitions.lua")
  19. dofile(modpath .. "/crafting.lua")
  20. dofile(modpath .. "/aliases.lua")