mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
feat: add 26.1 packet palette, structured components registry, and version routing
Add PacketPalette261 with new packet types (GameRuleValues, LowDiskSpaceWarning, Attack, SetGameRule). Create StructuredComponentsRegistry261 with 6 new components (additional_trade_cost, dye, pig/cow/chicken/cat sound_variant). Update version routing in PacketType18Handler, EntityMetadataPalette, StructuredComponentsHandler, and Program.cs to support protocol 775 (26.1). Made-with: Cursor
This commit is contained in:
parent
e3d3a86ac2
commit
d4014f7c87
8 changed files with 404 additions and 2 deletions
|
|
@ -33,6 +33,7 @@ public class StructuredComponentsHandler
|
|||
{
|
||||
Protocol18Handler.MC_1_20_6_Version => typeof(StructuredComponentsRegistry1206),
|
||||
Protocol18Handler.MC_1_21_Version => typeof(StructuredComponentsRegistry121),
|
||||
>= Protocol18Handler.MC_26_1_Version => typeof(StructuredComponentsRegistry261),
|
||||
>= Protocol18Handler.MC_1_21_11_Version => typeof(StructuredComponentsRegistry12111),
|
||||
>= Protocol18Handler.MC_1_21_5_Version => typeof(StructuredComponentsRegistry1215),
|
||||
>= Protocol18Handler.MC_1_21_2_Version => typeof(StructuredComponentsRegistry1212),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue