init.lua 680 B

1234567891011121314151617181920
  1. lottblocks = {}
  2. lottblocks.player = {}
  3. lottblocks.pos = {}
  4. local path = minetest.get_modpath("lottblocks")
  5. dofile(path.."/wooden_stuff.lua") --This has trapdoors, doors, tables and chairs in all the kinds of wood.
  6. dofile(path.."/misc.lua")
  7. dofile(path.."/beds.lua") --This has beds.
  8. dofile(path.."/music.lua") --This has musical insturments, and the music they play.
  9. dofile(path.."/decoration.lua") --This has various decoration nodes, by catninja.
  10. dofile(path.."/chests.lua")
  11. dofile(path.."/lamps.lua")
  12. dofile(path.."/banners.lua")
  13. dofile(path.."/doors.lua")
  14. dofile(path.."/palantiri.lua")
  15. dofile(path.."/crafting.lua")
  16. dofile(path.."/guides.lua")
  17. dofile(path.."/torches.lua")