1
0
Fork 0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-03-23 23:39:29 +01: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
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F

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();
}