1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-31 04:36:33 +00:00

Wrong method call on previous commit

This commit is contained in:
Camotoy
2022-12-21 00:37:48 -05:00
parent 98069cff83
commit fcd5fe1341

View File

@@ -106,7 +106,7 @@ public final class SoundUtils {
String packetSound;
if (!(javaSound instanceof BuiltinSound)) {
// Identifier needs trimmed probably.
packetSound = translatePlaySound(javaSound.getName());
packetSound = trim(javaSound.getName());
} else {
packetSound = javaSound.getName();
}