forked from GeyserMC/Geyser
Return if sound is null and update mappings
This commit is contained in:
parent
980e82a2d9
commit
8e8bc2817a
2 changed files with 3 additions and 2 deletions
|
@ -70,8 +70,9 @@ public class JavaPlayBuiltinSoundTranslator extends PacketTranslator<ServerPlayB
|
||||||
session.getConnector().getLogger().debug("[Builtin] Sound for original " + packetSound + " to mappings " + soundPacket
|
session.getConnector().getLogger().debug("[Builtin] Sound for original " + packetSound + " to mappings " + soundPacket
|
||||||
+ " was not a playable level sound, or has yet to be mapped to an enum in "
|
+ " was not a playable level sound, or has yet to be mapped to an enum in "
|
||||||
+ "NukkitX SoundEvent ");
|
+ "NukkitX SoundEvent ");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
soundPacket.setSound(sound);
|
soundPacket.setSound(sound);
|
||||||
soundPacket.setPosition(Vector3f.from(packet.getX(), packet.getY(), packet.getZ()));
|
soundPacket.setPosition(Vector3f.from(packet.getX(), packet.getY(), packet.getZ()));
|
||||||
soundPacket.setIdentifier(soundMapping.getIdentifier());
|
soundPacket.setIdentifier(soundMapping.getIdentifier());
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit a1b44a958ab42fdc2416bfbacc0fbf155ed58d46
|
Subproject commit 204c8f8dfdb1e39b881986c4968aa2575fbb5400
|
Loading…
Reference in a new issue