3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00

Woops, the sounds were still broken. Now it should be fixed. no lies this time

Dieser Commit ist enthalten in:
Matsv 2016-06-02 21:19:48 +02:00
Ursprung 8ffc056a7e
Commit e1b3d21732

Datei anzeigen

@ -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;
}