forked from VoxeLibre/VoxeLibre
Add sound to warped wart block and shroomlight block
This commit is contained in:
parent
9e8ed7efc3
commit
42eb541eaa
|
@ -265,6 +265,7 @@ minetest.register_node("mcl_crimson:warped_wart_block", {
|
||||||
description = S("Warped Wart Block"),
|
description = S("Warped Wart Block"),
|
||||||
tiles = {"warped_wart_block.png"},
|
tiles = {"warped_wart_block.png"},
|
||||||
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
|
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
|
||||||
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
||||||
_mcl_hardness = 2,
|
_mcl_hardness = 2,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -273,6 +274,7 @@ minetest.register_node("mcl_crimson:shroomlight", {
|
||||||
tiles = {"shroomlight.png"},
|
tiles = {"shroomlight.png"},
|
||||||
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
|
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
|
||||||
light_source = minetest.LIGHT_MAX,
|
light_source = minetest.LIGHT_MAX,
|
||||||
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
||||||
_mcl_hardness = 2,
|
_mcl_hardness = 2,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue