init.lua 426 B

1234567891011121314
  1. local mod_path = minetest.get_modpath('food')
  2. dofile(mod_path..'/meats.lua')
  3. dofile(mod_path..'/recipes.lua')
  4. dofile(mod_path..'/seafood.lua')
  5. dofile(mod_path..'/baked_goods/breads.lua')
  6. dofile(mod_path..'/baked_goods/cooking.lua')
  7. dofile(mod_path..'/baked_goods/simplecrafting_recipes.lua')
  8. dofile(mod_path..'/baked_goods/snacks.lua')
  9. dofile(mod_path..'/ingredients/dairy.lua')
  10. dofile(mod_path..'/ingredients/flours.lua')