Skip to content

Commit f3b26c5

Browse files
committed
Fix 1.20.2->1.20 entity sound reading
Fixes ViaVersion/ViaVersion#3744
1 parent d96cef7 commit f3b26c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/viaversion/viabackwards/protocol/protocol1_20to1_20_2/Protocol1_20To1_20_2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected void registerPackets() {
6565

6666
final SoundRewriter<ClientboundPackets1_20_2> soundRewriter = new SoundRewriter<>(this);
6767
soundRewriter.register1_19_3Sound(ClientboundPackets1_20_2.SOUND);
68-
soundRewriter.registerSound(ClientboundPackets1_20_2.ENTITY_SOUND);
68+
soundRewriter.register1_19_3Sound(ClientboundPackets1_20_2.ENTITY_SOUND);
6969
soundRewriter.registerStopSound(ClientboundPackets1_20_2.STOP_SOUND);
7070

7171
registerClientbound(ClientboundPackets1_20_2.DISPLAY_SCOREBOARD, wrapper -> {

0 commit comments

Comments
 (0)