The bug
Lily pads makes the regular grass sound, however, they should use the wet_grass sound because they are wet plants.
Comments 11
@unknown, updated the affected version list, but next time you can do this yourself as you are the reporter of the ticket. Thank you.
Can confirm in 1.19.2. Here's a code analysis of this issue.
Code Analysis:
The following is based on a decompiled version of Minecraft 1.19.2 using MCP-Reborn.
net.minecraft.world.level.block.SoundType.java
public class SoundType {
...
public static final SoundType LILY_PAD = new SoundType(1.0F, 1.0F, SoundEvents.GRASS_BREAK, SoundEvents.GRASS_STEP, SoundEvents.LILY_PAD_PLACE, SoundEvents.GRASS_HIT, SoundEvents.GRASS_FALL);
...If we look at the above class, we can see that every sound other than the lily pad's placing sound uses GRASS sound events instead of WET_GRASS sound events.
This may be a duplicate of MC-132811 since apparently wet sounds are only for corals and sea grass (with no evidence). The developers did say that multiple issues shouldn't be compacted into one report so these issues should stay related.