Skip to content
Snippets Groups Projects
Commit 81bf163a authored by Milan's avatar Milan
Browse files

Flowers: add mushroom group to mushrooms

parent b64202fb
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,7 @@ minetest.register_node("flowers:mushroom_red", {
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, attached_node = 1},
groups = {snappy = 3, attached_node = 1, mushroom = 1},
sounds = default.node_sound_leaves_defaults(),
on_use = minetest.item_eat(-5),
selection_box = {
......@@ -154,7 +154,7 @@ minetest.register_node("flowers:mushroom_brown", {
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, attached_node = 1},
groups = {snappy = 3, attached_node = 1, mushroom = 1},
sounds = default.node_sound_leaves_defaults(),
on_use = minetest.item_eat(1),
selection_box = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment