Fix minor copy and paste comment mistake

This commit is contained in:
Ethan 2024-07-02 18:30:13 +08:00
parent ddf92feb03
commit 3a42b98b77

View file

@ -42,7 +42,7 @@ public class FenceGateSoundInteractionTranslator implements BlockSoundInteractio
String materialIdentifier = getMaterialIdentifier(identifier); String materialIdentifier = getMaterialIdentifier(identifier);
float volume = 1.0f; float volume = 1.0f;
float pitch = 1.0f; float pitch = 1.0f;
// Sounds are quieter for wooden trapdoors and bamboo wood doors // Sounds are quieter for wooden and bamboo fence gates.
if (materialIdentifier.equals("block.") || materialIdentifier.equals("block.bamboo_wood_")) { if (materialIdentifier.equals("block.") || materialIdentifier.equals("block.bamboo_wood_")) {
volume = 0.9f; volume = 0.9f;
} }