Skip to content

Commit afa6505

Browse files
committed
chore: update 1.21.9
1 parent 79cb19c commit afa6505

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,8 @@ public enum StateRegistry {
458458
map(0x65, MINECRAFT_1_20_3, true),
459459
map(0x67, MINECRAFT_1_20_5, true),
460460
map(0x6E, MINECRAFT_1_21_2, true),
461-
map(0x6D, MINECRAFT_1_21_5, true));
461+
map(0x6D, MINECRAFT_1_21_5, true),
462+
map(0x72, MINECRAFT_1_21_9, true));
462463
clientbound.register(
463464
ClientboundStopSoundPacket.class, ClientboundStopSoundPacket::new,
464465
map(0x5F, MINECRAFT_1_19_3, true),
@@ -467,7 +468,8 @@ public enum StateRegistry {
467468
map(0x68, MINECRAFT_1_20_3, true),
468469
map(0x6A, MINECRAFT_1_20_5, true),
469470
map(0x71, MINECRAFT_1_21_2, true),
470-
map(0x70, MINECRAFT_1_21_5, true));
471+
map(0x70, MINECRAFT_1_21_5, true),
472+
map(0x75, MINECRAFT_1_21_9, true));
471473
clientbound.register(
472474
PluginMessagePacket.class,
473475
PluginMessagePacket::new,

0 commit comments

Comments
 (0)