forked from mtcontrib/plantlife_modpack
Add attached_node group to poisonivy nodes (#56)
This commit is contained in:
parent
69e272cd64
commit
9e771e2988
@ -25,7 +25,7 @@ minetest.register_node('poisonivy:seedling', {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
walkable = false,
|
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(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
})
|
})
|
||||||
@ -40,7 +40,7 @@ minetest.register_node('poisonivy:sproutling', {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
walkable = false,
|
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(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
})
|
})
|
||||||
@ -55,7 +55,7 @@ minetest.register_node('poisonivy:climbing', {
|
|||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
paramtype2 = 'wallmounted',
|
paramtype2 = 'wallmounted',
|
||||||
walkable = false,
|
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(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "wallmounted",
|
type = "wallmounted",
|
||||||
|
Loading…
Reference in New Issue
Block a user