mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-22 16:09:33 +01:00
Dig mushrooms immediately
This commit is contained in:
parent
b3072c0543
commit
ffc5dc207b
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ minetest.register_node("farming:mushroom_brown", {
|
|||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,mushroom=1,attached_node=1},
|
||||
groups = {dig_immediate=3,flammable=2,mushroom=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
light_source = 1,
|
||||
selection_box = {
|
||||
|
@ -25,7 +25,7 @@ minetest.register_node("farming:mushroom_red", {
|
|||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,mushroom=1,attached_node=1},
|
||||
groups = {dig_immediate=3,flammable=2,mushroom=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
|
Loading…
Reference in a new issue