1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-27 02:39:15 +00:00

Return if sound is null and update mappings

This commit is contained in:
RednedEpic
2020-06-28 12:34:57 -05:00
parent 980e82a2d9
commit 8e8bc2817a
2 changed files with 3 additions and 2 deletions

View File

@@ -70,8 +70,9 @@ public class JavaPlayBuiltinSoundTranslator extends PacketTranslator<ServerPlayB
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 "
+ "NukkitX SoundEvent ");
return;
}
soundPacket.setSound(sound);
soundPacket.setPosition(Vector3f.from(packet.getX(), packet.getY(), packet.getZ()));
soundPacket.setIdentifier(soundMapping.getIdentifier());