aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/client.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-25 15:14:39 -1245
committermat <git@matdoes.dev>2025-06-25 15:14:39 -1245
commit08c409d04896e7057c31250f2d6f99c75b8af5b5 (patch)
tree78c839b5d88f18df88dd1c562050f63d18814e41 /azalea-client/src/client.rs
parentf9e4b65713bbacabcd54416a388a92b90f56ab47 (diff)
downloadazalea-drasl-08c409d04896e7057c31250f2d6f99c75b8af5b5.tar.xz
improve packet_order test, add BlockUpdatePlugin, fix packet order for sprinting
Diffstat (limited to 'azalea-client/src/client.rs')
-rw-r--r--azalea-client/src/client.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs
index c9cc5259..9481ba2d 100644
--- a/azalea-client/src/client.rs
+++ b/azalea-client/src/client.rs
@@ -47,6 +47,7 @@ use uuid::Uuid;
use crate::{
Account, DefaultPlugins,
attack::{self},
+ block_update::QueuedServerBlockUpdates,
chunks::ChunkBatchInfo,
connection::RawConnection,
disconnect::DisconnectEvent,
@@ -586,7 +587,8 @@ pub struct JoinedClientBundle {
pub physics_state: PhysicsState,
pub inventory: Inventory,
pub tab_list: TabList,
- pub current_sequence_number: BlockStatePredictionHandler,
+ pub block_state_prediction_handler: BlockStatePredictionHandler,
+ pub queued_server_block_updates: QueuedServerBlockUpdates,
pub last_sent_direction: LastSentLookDirection,
pub abilities: PlayerAbilities,
pub permission_level: PermissionLevel,