forestry/forestry_bees/init.lua

11 lines
545 B
Lua

--definitions that can be used around
forestry_bees = {}
forestry_bees.settings = Settings(minetest.get_modpath("forestry_bees") .. "/forestry_bees.conf")
dofile(minetest.get_modpath("forestry_bees") .. "/helper.lua")
dofile(minetest.get_modpath("forestry_bees") .. "/bee_genes.lua")
dofile(minetest.get_modpath("forestry_bees") .. "/register.lua")
dofile(minetest.get_modpath("forestry_bees") .. "/bee_drops.lua")
dofile(minetest.get_modpath("forestry_bees") .. "/mutations.lua")
dofile(minetest.get_modpath("forestry_bees") .. "/apiary.lua")