aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/chunks.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/plugins/chunks.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/plugins/chunks.rs')
-rw-r--r--azalea-client/src/plugins/chunks.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/chunks.rs b/azalea-client/src/plugins/chunks.rs
index 7a99c16c..a4e19f7f 100644
--- a/azalea-client/src/plugins/chunks.rs
+++ b/azalea-client/src/plugins/chunks.rs
@@ -28,7 +28,7 @@ impl Plugin for ChunksPlugin {
Update,
(
handle_chunk_batch_start_event,
- handle_receive_chunk_events,
+ handle_receive_chunk_event,
handle_chunk_batch_finished_event,
)
.chain()
@@ -65,7 +65,7 @@ pub struct ChunkBatchFinishedEvent {
pub batch_size: u32,
}
-pub fn handle_receive_chunk_events(
+pub fn handle_receive_chunk_event(
mut events: EventReader<ReceiveChunkEvent>,
mut query: Query<&InstanceHolder>,
) {