mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
feat: add MC 1.21.7/1.21.8 (protocol 772) support
1.21.7 and 1.21.8 share protocol 772. The only registry change from 1.21.6 is one new item (music_disc_lava_chicken). All other palettes (blocks, entities, packets, entity metadata, structured components) are unchanged and reuse 1.21.6 versions. Changes: - Add MC_1_21_7_Version (772) constant - Add "1.21.7" / "1.21.8" version mappings in ProtocolHandler - Add MusicDiscLavaChicken to ItemType enum - Generate ItemPalette1217 (1416 items) for the new item palette - Update all version upper-bound checks from MC_1_21_6 to MC_1_21_7 - Update MCHighestVersion to "1.21.8" Made-with: Cursor
This commit is contained in:
parent
067395ab2a
commit
5e8d715358
7 changed files with 1455 additions and 14 deletions
|
|
@ -24,7 +24,7 @@ public abstract class EntityMetadataPalette
|
|||
<= Protocol18Handler.MC_1_19_3_Version => new EntityMetadataPalette1193(), // 1.19.3
|
||||
< Protocol18Handler.MC_1_20_6_Version => new EntityMetadataPalette1194(), // 1.19.4 - 1.20.4
|
||||
<= Protocol18Handler.MC_1_21_4_Version => new EntityMetadataPalette1206(), // 1.20.6 - 1.21.4
|
||||
<= Protocol18Handler.MC_1_21_6_Version => new EntityMetadataPalette1215(), // 1.21.5 - 1.21.6
|
||||
<= Protocol18Handler.MC_1_21_7_Version => new EntityMetadataPalette1215(), // 1.21.5 - 1.21.7
|
||||
_ => throw new NotImplementedException()
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue