forked from Mineclonia/Mineclonia
Fix missing footstep sound for block of clay
This commit is contained in:
parent
6f56c5cec9
commit
ce3d3e06e9
|
@ -638,9 +638,7 @@ minetest.register_node("mcl_core:clay", {
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {handy=1,shovely=1, building_block=1},
|
groups = {handy=1,shovely=1, building_block=1},
|
||||||
drop = 'mcl_core:clay_lump 4',
|
drop = 'mcl_core:clay_lump 4',
|
||||||
sounds = mcl_sounds.node_sound_dirt_defaults({
|
sounds = mcl_sounds.node_sound_dirt_defaults(),
|
||||||
footstep = "",
|
|
||||||
}),
|
|
||||||
_mcl_blast_resistance = 3,
|
_mcl_blast_resistance = 3,
|
||||||
_mcl_hardness = 0.6,
|
_mcl_hardness = 0.6,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue