Patch mcl_ocean to support pickblock

This commit is contained in:
Mikita Wiśniewski 2024-07-31 21:02:21 +07:00
parent 9d0e3ee7a2
commit 3cac4f3037
2 changed files with 4 additions and 1 deletions

View file

@ -547,7 +547,7 @@ kelp.surface_deftemplate = {
}, },
}, },
-- groups.falling_node = is_falling, -- groups.falling_node = is_falling,
groups = { dig_immediate = 3, deco_block = 1, plant = 1, kelp = 1, }, groups = { dig_immediate = 3, deco_block = 1, plant = 1, kelp = 1, not_in_creative_inventory = 1 },
--sounds = sounds, --sounds = sounds,
--node_dig_prediction = nodename, --node_dig_prediction = nodename,
on_construct = kelp.surface_on_construct, on_construct = kelp.surface_on_construct,
@ -559,6 +559,7 @@ kelp.surface_deftemplate = {
--_mcl_falling_node_alternative = is_falling and nodename or nil, --_mcl_falling_node_alternative = is_falling and nodename or nil,
_mcl_hardness = 0, _mcl_hardness = 0,
_mcl_blast_resistance = 0, _mcl_blast_resistance = 0,
--_vl_pickblock = nodename,
} }
-- Commented properties are the ones obtained using register_kelp_surface. -- Commented properties are the ones obtained using register_kelp_surface.
@ -609,6 +610,7 @@ function kelp.register_kelp_surface(surface, surface_deftemplate, surface_docs)
surface_deftemplate.node_dig_prediction = surface_deftemplate.node_dig_prediction or nodename surface_deftemplate.node_dig_prediction = surface_deftemplate.node_dig_prediction or nodename
surface_deftemplate.groups.falling_node = surface_deftemplate.groups.falling_node or falling_node surface_deftemplate.groups.falling_node = surface_deftemplate.groups.falling_node or falling_node
surface_deftemplate._mcl_falling_node_alternative = surface_deftemplate._mcl_falling_node_alternative or (falling_node and nodename or nil) surface_deftemplate._mcl_falling_node_alternative = surface_deftemplate._mcl_falling_node_alternative or (falling_node and nodename or nil)
surface_deftemplate._vl_pickblock = surface_deftemplate._vl_pickblock or nodename
minetest.register_node(surfacename, surface_deftemplate) minetest.register_node(surfacename, surface_deftemplate)
end end

View file

@ -140,6 +140,7 @@ for s=1, #surfaces do
_mcl_shears_drop = { "mcl_ocean:seagrass" }, _mcl_shears_drop = { "mcl_ocean:seagrass" },
_mcl_hardness = 0, _mcl_hardness = 0,
_mcl_blast_resistance = 0, _mcl_blast_resistance = 0,
_vl_pickblock = surfaces[s][2],
}) })
if mod_doc and surfaces[s][1] ~= "dirt" then if mod_doc and surfaces[s][1] ~= "dirt" then
doc.add_entry_alias("nodes", "mcl_ocean:seagrass_dirt", "nodes", "mcl_ocean:seagrass_"..surfaces[s][1]) doc.add_entry_alias("nodes", "mcl_ocean:seagrass_dirt", "nodes", "mcl_ocean:seagrass_"..surfaces[s][1])