-
-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.20.5 Protocol #884
1.20.5 Protocol #884
Conversation
There are several things missing. For example any places where item stacks are written now have optional slots (like ServerboundSetCreativeModeSlotPacket, ServerboundContainerClickPacket, etc). Also ServerboundContainerButtonClickPacket now uses varints over i8's. There are likely more. |
data/pc/1.20.5/protocol.json
Outdated
"name": "x", | ||
"type": "i8" | ||
}, | ||
{ | ||
"name": "z", | ||
"type": "i8" | ||
}, | ||
{ | ||
"name": "direction", | ||
"type": "u8" | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these might be double, double, float now
https://github.com/extremeheat/extracted_minecraft_data/blame/client1.20.5/client/net/minecraft/world/item/component/MapDecorations.java#L27-L30
"packet_world_particles": [ | ||
"container", | ||
[ | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also need item fixed
|
"max_stack_size_component": [ | ||
"container", | ||
[ | ||
{ | ||
"name": "maxStackSize", | ||
"type": "varint" | ||
} | ||
] | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a reason these are not inlined?
continuing at #898 |
Update protocol to 1.20.5 as specified in https://wiki.vg/index.php?title=Pre-release_protocol&oldid=19287