From e1b3d21732d692d3cb4aa866c074180fce685e89 Mon Sep 17 00:00:00 2001 From: Matsv Date: Thu, 2 Jun 2016 21:19:48 +0200 Subject: [PATCH] Woops, the sounds were still broken. Now it should be fixed. no lies this time --- .../ProtocolSnapshotTo1_9_3_4.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_9_3/ProtocolSnapshotTo1_9_3_4.java b/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_9_3/ProtocolSnapshotTo1_9_3_4.java index f55d74cb4..80815b75d 100644 --- a/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_9_3/ProtocolSnapshotTo1_9_3_4.java +++ b/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_9_3/ProtocolSnapshotTo1_9_3_4.java @@ -145,13 +145,13 @@ public class ProtocolSnapshotTo1_9_3_4 extends Protocol { int newId = id; if (id >= 24) //Blame the enchantment table sound newId += 1; - else if (id >= 248) //Blame the husk + if (id >= 248) //Blame the husk newId += 4; - else if (id >= 296) //Blame the polar bear + if (id >= 296) //Blame the polar bear newId += 6; - else if (id >= 354) //Blame the stray + if (id >= 354) //Blame the stray newId += 4; - else if (id >= 372) //Blame the wither skeleton + if (id >= 372) //Blame the wither skeleton newId += 4; return newId; }