1.21 support (#1338)

This commit is contained in:
Gero
2024-06-12 20:33:01 +02:00
committed by GitHub
parent 2d015cdf5c
commit 350ea7f31e
7 changed files with 194 additions and 3 deletions

View File

@@ -86,7 +86,8 @@ public enum ProtocolVersion implements Ordered<ProtocolVersion> {
MINECRAFT_1_20(763, "1.20", "1.20.1"),
MINECRAFT_1_20_2(764, "1.20.2"),
MINECRAFT_1_20_3(765, "1.20.3", "1.20.4"),
MINECRAFT_1_20_5(766, "1.20.5", "1.20.6");
MINECRAFT_1_20_5(766, "1.20.5", "1.20.6"),
MINECRAFT_1_21(767, "1.21");
private static final int SNAPSHOT_BIT = 30;