Skip to content
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

Fixed 1.20.71 correctPlayerMovePredictionPacket missing prediction_type #870

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions data/bedrock/1.20.71/protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -10276,6 +10276,10 @@
{
"name": "tick",
"type": "varint64"
},
{
"name": "prediction_type",
"type": "u8"
}
]
],
Expand Down
2 changes: 2 additions & 0 deletions data/bedrock/latest/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3410,6 +3410,8 @@ packet_correct_player_move_prediction:
on_ground: bool
# Tick is the tick of the movement which was corrected by this packet.
tick: varint64
# Movement prediction type. 0 for vehicle and 1 for player.
prediction_type: u8

# ItemComponent is sent by the server to attach client-side components to a custom item.
packet_item_component:
Expand Down
Loading