init.lua 842 B

1234567891011121314151617181920
  1. mylandscaping = {}
  2. if minetest.settings:get_bool('mylandscaping.creative') then
  3. ml_visible = 0
  4. else
  5. ml_visible = 1
  6. end
  7. --Load File
  8. dofile(minetest.get_modpath('mylandscaping')..'/walls_freeport.lua')
  9. dofile(minetest.get_modpath('mylandscaping')..'/walls_madison.lua')
  10. dofile(minetest.get_modpath('mylandscaping')..'/walls_adaridge.lua')
  11. dofile(minetest.get_modpath('mylandscaping')..'/walls_deco.lua')
  12. dofile(minetest.get_modpath('mylandscaping')..'/stones.lua')
  13. dofile(minetest.get_modpath('mylandscaping')..'/recipes.lua')
  14. dofile(minetest.get_modpath('mylandscaping')..'/machine.lua')
  15. dofile(minetest.get_modpath('mylandscaping')..'/mixer.lua')
  16. dofile(minetest.get_modpath('mylandscaping')..'/concrete.lua')
  17. dofile(minetest.get_modpath('mylandscaping')..'/formspec.lua')
  18. dofile(minetest.get_modpath('mylandscaping')..'/toppers.lua')