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

Merge pull request #2162 from lennardk/fix-1.11-sound-rewrite

Fix sound ID shift in 1.11
Dieser Commit ist enthalten in:
Myles 2020-11-02 16:19:27 +00:00 committet von GitHub
Commit bba1f2acf0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -337,7 +337,7 @@ public class Protocol1_11To1_10 extends Protocol<ClientboundPackets1_9_3, Client
id += 1;
if (id >= 197) // evocation things
id += 8;
if (id >= 196) // Rip the Experience orb touch sound :'(
if (id >= 207) // Rip the Experience orb touch sound :'(
id -= 1;
if (id >= 279) // Liama's
id += 9;