mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Wrong method call on previous commit
This commit is contained in:
parent
98069cff83
commit
fcd5fe1341
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public final class SoundUtils {
|
||||||
String packetSound;
|
String packetSound;
|
||||||
if (!(javaSound instanceof BuiltinSound)) {
|
if (!(javaSound instanceof BuiltinSound)) {
|
||||||
// Identifier needs trimmed probably.
|
// Identifier needs trimmed probably.
|
||||||
packetSound = translatePlaySound(javaSound.getName());
|
packetSound = trim(javaSound.getName());
|
||||||
} else {
|
} else {
|
||||||
packetSound = javaSound.getName();
|
packetSound = javaSound.getName();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue