diff options
| author | mat <git@matdoes.dev> | 2025-06-11 22:22:26 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-06-11 22:22:26 +0000 |
| commit | 1b348ceeffc61e49b19f2982e7a9de479c1678de (patch) | |
| tree | bead28ce1a076a3af5ca5df2c326c9e94b63dd92 /azalea-client/src/client.rs | |
| parent | 067ec06f26ecaf7a319eb3ce61307b9730176313 (diff) | |
| download | azalea-drasl-1b348ceeffc61e49b19f2982e7a9de479c1678de.tar.xz | |
implement reverting block state predictions on ack
Diffstat (limited to 'azalea-client/src/client.rs')
| -rw-r--r-- | azalea-client/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 0304e7b0..d9fec523 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -51,7 +51,7 @@ use crate::{ connection::RawConnection, disconnect::DisconnectEvent, events::Event, - interact::CurrentSequenceNumber, + interact::BlockStatePredictionHandler, inventory::Inventory, join::{ConnectOpts, StartJoinServerEvent}, local_player::{Hunger, InstanceHolder, PermissionLevel, PlayerAbilities, TabList}, @@ -586,7 +586,7 @@ pub struct JoinedClientBundle { pub physics_state: PhysicsState, pub inventory: Inventory, pub tab_list: TabList, - pub current_sequence_number: CurrentSequenceNumber, + pub current_sequence_number: BlockStatePredictionHandler, pub last_sent_direction: LastSentLookDirection, pub abilities: PlayerAbilities, pub permission_level: PermissionLevel, |
