Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Fix sound ID shift in 1.11
This possibly got broken in the rewrite in dc62394
.
Fixes ender pearl throw and experience bottle throw/pickup sounds.
Dieser Commit ist enthalten in:
Ursprung
765f92bfe5
Commit
1afbff18ef
@ -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;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren