Fix up indentation for warped and crimson wart block sounds

This commit is contained in:
SmokeyDope 2023-02-02 22:36:33 +00:00
parent b4719599b5
commit 27f5a94c6a
1 changed files with 7 additions and 10 deletions

View File

@ -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", {