2023-07-30 17:41:22 +07:00
|
|
|
--[[
|
|
|
|
|
|
|
|
TechAge Apiary
|
|
|
|
=======
|
|
|
|
|
|
|
|
Copyright (C) 2023 Olesya Sibidanova
|
|
|
|
|
|
|
|
AGPL v3
|
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
|
|
|
|
local MP = minetest.get_modpath("ta_apiary")
|
|
|
|
|
|
|
|
dofile(MP.."/lib.lua")
|
2023-07-31 03:01:47 +07:00
|
|
|
|
|
|
|
if minetest.get_modpath("bees") then
|
|
|
|
dofile(MP.."/bee_hive.lua")
|
|
|
|
dofile(MP.."/honey_extractor.lua")
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.get_modpath("mobs_animal") then
|
|
|
|
dofile(MP.."/honey_sink.lua")
|
|
|
|
end
|
2023-07-30 17:41:22 +07:00
|
|
|
|