45 lines
702 B
Lua
Raw Normal View History

2023-03-10 17:27:01 -06:00
-- LUALOCALS < ---------------------------------------------------------
local include, nodecore
= include, nodecore
-- LUALOCALS > ---------------------------------------------------------
2024-09-30 09:23:15 -05:00
local modname = minetest.get_current_modname()
--<>--
2023-03-10 17:27:01 -06:00
include("oceanfix")
--<>--
include("corals")
include("anemones")
2023-03-21 16:33:21 -05:00
include("mollusks")
2023-03-10 17:27:01 -06:00
2023-03-21 16:33:21 -05:00
include("urchins")
2023-03-10 17:27:01 -06:00
--include("seastars")
include("seajellies")
--include("bobbits")
--<>--
include("kelp")
--<>--
include("cultivate_coral")
--<>--
2024-09-30 09:23:15 -05:00
if minetest.settings:get_bool(modname .. ".foodweb", true) then
include("predation")
end
--<>--
2023-03-21 16:33:21 -05:00
2024-09-30 09:23:15 -05:00
if minetest.get_modpath("ncshark") then
include("sharks")
end