3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-12-27 08:30:09 +01:00

Handle new sounds

Dieser Commit ist enthalten in:
Matsv 2016-06-02 20:52:55 +02:00
Ursprung 3b533b5138
Commit 7c274fb03d

Datei anzeigen

@ -139,12 +139,19 @@ public class ProtocolSnapshotTo1_9_3 extends Protocol {
}); });
} }
public int getNewSoundId(int id) { //TODO organize things later public int getNewSoundId(int id) { //TODO Make it better, suggestions are welcome. It's ugly and hardcoded now.
if (id >= 24 && id <= 295) //One EnchantTable sound makes everything move between 24 and 295, blame the enchant table. int newId = id;
return ++id; if (id >= 24) //Blame the enchantment table sound
else if (id >= 296 && id < 443) //Blame the polar bear newId += 1;
return id + 7; else if (id >= 248) //Blame the husk
return id; newId += 4;
else if (id >= 296) //Blame the polar bear
newId += 6;
else if (id >= 354) //Blame the stray
newId += 4;
else if (id >= 372) //Blame the wither skeleton
newId += 4;
return newId;
} }
@Override @Override