mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-10-28 20:28:21 +01:00
ecdbc30b63
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.
16 lines
489 B
Lua
16 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")
|