Add attached_node group to poisonivy nodes

This commit is contained in:
Niklp09 2023-08-26 12:15:57 +02:00
parent 69e272cd64
commit bc87837eee
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ minetest.register_node('poisonivy:seedling', {
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
groups = { snappy = 3, poisonivy=1, flora_block=1, attached_node=1 },
sounds = default.node_sound_leaves_defaults(),
buildable_to = true,
})
@ -40,7 +40,7 @@ minetest.register_node('poisonivy:sproutling', {
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
groups = { snappy = 3, poisonivy=1, flora_block=1, attached_node=1 },
sounds = default.node_sound_leaves_defaults(),
buildable_to = true,
})
@ -55,7 +55,7 @@ minetest.register_node('poisonivy:climbing', {
paramtype = 'light',
paramtype2 = 'wallmounted',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
groups = { snappy = 3, poisonivy=1, flora_block=1, attached_node=1 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",