1
0
Fork 0

Add sound to warped wart block and shroomlight block

This commit is contained in:
SmokeyDope 2023-01-23 01:28:55 +00:00
parent 9e8ed7efc3
commit 42eb541eaa
1 changed files with 2 additions and 0 deletions

View File

@ -265,6 +265,7 @@ minetest.register_node("mcl_crimson:warped_wart_block", {
description = S("Warped Wart Block"),
tiles = {"warped_wart_block.png"},
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_hardness = 2,
})
@ -273,6 +274,7 @@ minetest.register_node("mcl_crimson:shroomlight", {
tiles = {"shroomlight.png"},
groups = {handy = 1, hoey = 7, swordy = 1, deco_block = 1},
light_source = minetest.LIGHT_MAX,
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_hardness = 2,
})