init.lua 1.2 KB

1234567891011121314151617
  1. furniture = {}
  2. furniture.players = {}
  3. dofile(minetest.get_modpath('furniture')..'/bedroom.lua') --Things you'd find in a bedroom.
  4. dofile(minetest.get_modpath('furniture')..'/craftitems.lua') --Items used in recipes.
  5. dofile(minetest.get_modpath('furniture')..'/crafts.lua')
  6. dofile(minetest.get_modpath('furniture')..'/decor.lua')
  7. dofile(minetest.get_modpath('furniture')..'/fabricandthread.lua')
  8. dofile(minetest.get_modpath('furniture')..'/fences.lua') --Fences are here, duh!
  9. dofile(minetest.get_modpath('furniture')..'/formspecs.lua') --Formspecs for the nodes.
  10. dofile(minetest.get_modpath('furniture')..'/functions.lua') --Different functions to control stuff.
  11. dofile(minetest.get_modpath('furniture')..'/library.lua') --Books things.
  12. dofile(minetest.get_modpath('furniture')..'/lighting.lua') --Things that add light.
  13. dofile(minetest.get_modpath('furniture')..'/seating.lua') --chairs, benches, stools
  14. dofile(minetest.get_modpath('furniture')..'/stain.lua') --Brushes for coloring furniture
  15. dofile(minetest.get_modpath('furniture')..'/storage.lua') --Chests, boxes, etc.
  16. dofile(minetest.get_modpath('furniture')..'/tables.lua') --Not sure if I'll ever have more than one table.