yet another fork update #9

Merged
chmodsayshello merged 760 commits from VoxeLibre/VoxeLibre:master into master 2023-03-26 20:27:31 +02:00
1 changed files with 7 additions and 10 deletions
Showing only changes of commit 27f5a94c6a - Show all commits

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