diff --git a/mods/ITEMS/mcl_crimson/init.lua b/mods/ITEMS/mcl_crimson/init.lua index 1053cd378..88fdc6641 100644 --- a/mods/ITEMS/mcl_crimson/init.lua +++ b/mods/ITEMS/mcl_crimson/init.lua @@ -306,13 +306,12 @@ 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 = 1, + sounds = mcl_sounds.node_sound_leaves_defaults({ footstep={name="default_dirt_footstep", gain=0.7}, dug={name="default_dirt_footstep", gain=1.5}, - } -), - _mcl_hardness = 1, + }), + }) minetest.register_node("mcl_crimson:shroomlight", { @@ -320,13 +319,11 @@ 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 = 1, + sounds = mcl_sounds.node_sound_leaves_defaults({ footstep={name="default_dirt_footstep", gain=0.7}, dug={name="default_dirt_footstep", gain=1.5}, - } -), - _mcl_hardness = 1, + }), }) minetest.register_node("mcl_crimson:warped_hyphae", {