forked from VoxeLibre/VoxeLibre
Dig mushrooms immediately
This commit is contained in:
parent
b3072c0543
commit
ffc5dc207b
|
@ -7,7 +7,7 @@ minetest.register_node("farming:mushroom_brown", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
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(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
light_source = 1,
|
light_source = 1,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
|
@ -25,7 +25,7 @@ minetest.register_node("farming:mushroom_red", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
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(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
|
Loading…
Reference in New Issue