init.lua 977 B

1234567891011121314151617181920212223242526
  1. technic_farming = {
  2. mod = {author = "Andreas Demant"},
  3. modpath = minetest.get_modpath(minetest.get_current_modname()),
  4. modname = minetest.get_current_modname(),
  5. }
  6. minetest.log("action", "[MOD]"..technic_farming.modname.." -- start loading ")
  7. math.randomseed(os.time())
  8. dofile(technic_farming.modpath .. "/config.lua")
  9. dofile(technic_farming.modpath .. "/craftitems.lua")
  10. dofile(technic_farming.modpath .. "/craft.lua")
  11. dofile(technic_farming.modpath .. "/recipe_register.lua")
  12. dofile(technic_farming.modpath .. "/juicer.lua")
  13. dofile(technic_farming.modpath .. "/compactor.lua")
  14. dofile(technic_farming.modpath .. "/water_mill.lua")
  15. dofile(technic_farming.modpath .. "/wind_mill.lua")
  16. dofile(technic_farming.modpath .. "/fermenter.lua")
  17. dofile(technic_farming.modpath .. "/mp_grinder.lua")
  18. dofile(technic_farming.modpath .. "/mp_juicer.lua")
  19. dofile(technic_farming.modpath .. "/mp_compactor.lua")
  20. minetest.log("action", "[MOD]"..technic_farming.modname.." -- end loading ")