We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79cb19c commit afa6505Copy full SHA for afa6505
proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java
@@ -458,7 +458,8 @@ public enum StateRegistry {
458
map(0x65, MINECRAFT_1_20_3, true),
459
map(0x67, MINECRAFT_1_20_5, true),
460
map(0x6E, MINECRAFT_1_21_2, true),
461
- map(0x6D, MINECRAFT_1_21_5, true));
+ map(0x6D, MINECRAFT_1_21_5, true),
462
+ map(0x72, MINECRAFT_1_21_9, true));
463
clientbound.register(
464
ClientboundStopSoundPacket.class, ClientboundStopSoundPacket::new,
465
map(0x5F, MINECRAFT_1_19_3, true),
@@ -467,7 +468,8 @@ public enum StateRegistry {
467
468
map(0x68, MINECRAFT_1_20_3, true),
469
map(0x6A, MINECRAFT_1_20_5, true),
470
map(0x71, MINECRAFT_1_21_2, true),
- map(0x70, MINECRAFT_1_21_5, true));
471
+ map(0x70, MINECRAFT_1_21_5, true),
472
+ map(0x75, MINECRAFT_1_21_9, true));
473
474
PluginMessagePacket.class,
475
PluginMessagePacket::new,
0 commit comments