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:
jhqwqmc
2025-11-29 01:04:42 +08:00
parent ffaa28598a
commit a4702b3d69
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_8(772, "1.21.8"),
V1_21_9(773, "1.21.9"), V1_21_9(773, "1.21.9"),
V1_21_10(773, "1.21.10"), V1_21_10(773, "1.21.10"),
V1_21_11(774, "1.21.11"); V1_21_11(774, "1.21.11"); // todo 确认正式版协议ID
private final int id; private final int id;
private final String name; 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_08, 64);
PACK_FORMATS.put(1_21_09, 69); PACK_FORMATS.put(1_21_09, 69);
PACK_FORMATS.put(1_21_10, 69); PACK_FORMATS.put(1_21_10, 69);
PACK_FORMATS.put(1_21_11, 75); PACK_FORMATS.put(1_21_11, 75); // todo 确认正式版版本号
PACK_FORMATS.put(1_99_99, 1000); PACK_FORMATS.put(1_99_99, 1000);
} }