Update sounds to 16w42a

This commit is contained in:
Matsv 2016-10-25 19:31:32 +02:00
parent 2424057536
commit 783542401b

View File

@ -224,19 +224,25 @@ public class Protocol1_11To1_10 extends Protocol {
int newId = id;
if (id >= 85) // Hello shulker boxes
newId += 2;
if (id >= 174) // Hello Guardian flop
newId += 1;
if (id >= 194) // Hello evocation things
newId += 8;
if (id >= 196) // Rip the Experience orb touch sound :'(
newId -= 1;
if (id >= 269) // Hello Liama's
newId += 8;
newId += 9;
if (id >= 277) // Hello Mule chest
newId += 1;
if (id >= 370) // Hello Vex
newId += 4;
if (id >= 376) // Hello vindication
newId += 3;
if (id >= 423) // Equip Elytra
newId += 1;
if (id >= 427) // Hello empty bottle
newId += 1;
if (id > 441) // Hello item totem use
if (id >= 441) // Hello item totem use
newId += 1;
return newId;
}