MineClone2/mods/ITEMS/mcl_ocean/init.lua
iliekprogrammar ecdbc30b63 Overhaul kelp interactions.
Highlights:
- Added locking system to drops. Will be removed after testing.
- Expose more variables and functions. Will be finalized soon.
- Implement MC-like age and natural growth mechanics.
- Implement correct piston interactions with kelp and its surface.
- Implement correct falling node interactions for its surface.
- ABMs are now nonfunction. Will be fixed.
- Various optimizations and fixes.
2021-03-29 14:09:09 +08:00

17 lines
489 B
Lua

mcl_ocean = {}
-- Prismarine (includes sea lantern)
dofile(minetest.get_modpath(minetest.get_current_modname()).."/prismarine.lua")
-- Corals
dofile(minetest.get_modpath(minetest.get_current_modname()).."/corals.lua")
-- Seagrass
dofile(minetest.get_modpath(minetest.get_current_modname()).."/seagrass.lua")
-- Kelp
dofile(minetest.get_modpath(minetest.get_current_modname()).."/kelp.lua")
-- Sea Pickle
dofile(minetest.get_modpath(minetest.get_current_modname()).."/sea_pickle.lua")