Nether Brick walls and slabs dont have the new sounds(including red nether brick walls/slabs). Also affects Chiseled and Cracked Nether Bricks
Edit: As of the 1.16.230.52 beta, the slab and wall variants of deepslate-related blocks have their respective sounds, so it should be possible to do this with the said nether brick blocks
Linked issues
is duplicated by 22
relates to 1
Attachments
Comments 17
@Jesse Kohn only normal/red nether brick slabs/walls and chiseled/crack nether bricks don't have the sounds. The rest HAVE the sounds
Well In Lastest Preview The stone_block_slab has been splited, it includes nether brick slab, I think it's easier to fix.
This issue is caused by the definitions for the affected blocks in blocks.json specifically using the "stone" sound set. It can be fixed by putting the following in a blocks.json in a resource pack.
{
"chiseled_nether_bricks" : {
"sound" : "nether_brick",
"textures" : "chiseled_nether_bricks"
},
"cracked_nether_bricks" : {
"sound" : "nether_brick",
"textures" : "cracked_nether_bricks"
},
"nether_brick_double_slab" : {
"sound" : "nether_brick",
"textures" : "nether_brick_slab"
},
"nether_brick_slab" : {
"sound" : "nether_brick",
"textures" : "nether_brick_slab"
},
"nether_brick_wall" : {
"sound" : "nether_brick",
"textures" : "nether_brick_wall"
},
"red_nether_brick_double_slab" : {
"sound" : "nether_brick",
"textures" : "red_nether_brick_slab"
},
"red_nether_brick_slab" : {
"sound" : "nether_brick",
"textures" : "red_nether_brick_slab"
},
"red_nether_brick_wall" : {
"sound" : "nether_brick",
"textures" : "red_nether_brick_wall"
}
}
Replying to GoldenHelmet:
For a comprehenisve list of blocks assigned incorrect sounds in blocks.json, see MCPE-184908. It exposed many bugs similar to this Nether Brick one.
After hearing the clip with loud pitch I can assume the normal nether bricks is the only nether bricks to have the new sound, all other nether brick blocks have the sound of normal stone or something else.