mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-16 07:10:38 +01:00
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