Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PaperMC/Velocity
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e91c70ad7b2f497cf171ad59b80c01e0b959996f
Choose a base ref
..
head repository: PaperMC/Velocity
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 87b0e57174c36afe1fbf8214d6ba33b59a23159a
Choose a head ref
Showing with 12 additions and 12 deletions.
  1. +12 −12 proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java
Original file line number Diff line number Diff line change
@@ -415,20 +415,20 @@ public enum StateRegistry {
map(0x16, MINECRAFT_1_20_5, false));
clientbound.register(
ClientboundSoundEntityPacket.class, ClientboundSoundEntityPacket::new,
map(0x5D, MINECRAFT_1_19_3, false),
map(0x61, MINECRAFT_1_19_4, false),
map(0x63, MINECRAFT_1_20_2, false),
map(0x65, MINECRAFT_1_20_3, false),
map(0x67, MINECRAFT_1_20_5, false),
map(0x6E, MINECRAFT_1_21_2, false));
map(0x5D, MINECRAFT_1_19_3, true),
map(0x61, MINECRAFT_1_19_4, true),
map(0x63, MINECRAFT_1_20_2, true),
map(0x65, MINECRAFT_1_20_3, true),
map(0x67, MINECRAFT_1_20_5, true),
map(0x6E, MINECRAFT_1_21_2, true));
clientbound.register(
ClientboundStopSoundPacket.class, ClientboundStopSoundPacket::new,
map(0x5F, MINECRAFT_1_19_3, false),
map(0x63, MINECRAFT_1_19_4, false),
map(0x66, MINECRAFT_1_20_2, false),
map(0x68, MINECRAFT_1_20_3, false),
map(0x6A, MINECRAFT_1_20_5, false),
map(0x71, MINECRAFT_1_21_2, false));
map(0x5F, MINECRAFT_1_19_3, true),
map(0x63, MINECRAFT_1_19_4, true),
map(0x66, MINECRAFT_1_20_2, true),
map(0x68, MINECRAFT_1_20_3, true),
map(0x6A, MINECRAFT_1_20_5, true),
map(0x71, MINECRAFT_1_21_2, true));
clientbound.register(
PluginMessagePacket.class,
PluginMessagePacket::new,