9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-19 15:09:15 +00:00

确认版本号

This commit is contained in:
XiaoMoMi
2025-12-09 17:52:09 +08:00
parent dfa6b113af
commit 6c2c89a0da
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ public enum ProtocolVersion {
V1_21_8(772, "1.21.8"),
V1_21_9(773, "1.21.9"),
V1_21_10(773, "1.21.10"),
V1_21_11(774, "1.21.11"); // todo 确认正式版协议ID
V1_21_11(774, "1.21.11");
private final int id;
private final String name;

View File

@@ -24,7 +24,7 @@ public final class MinecraftVersion implements Comparable<MinecraftVersion> {
PACK_FORMATS.put(1_21_08, 64);
PACK_FORMATS.put(1_21_09, 69);
PACK_FORMATS.put(1_21_10, 69);
PACK_FORMATS.put(1_21_11, 75); // todo 确认正式版版本号
PACK_FORMATS.put(1_21_11, 75);
PACK_FORMATS.put(1_99_99, 1000);
}