aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/chunks.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-06-25 20:06:25 -1000
committermat <git@matdoes.dev>2025-06-25 20:06:25 -1000
commit537ec510f025fa9aef628808b056a3e008c0dcb6 (patch)
treee5a6427e6839e77d86bb911a1377e0d2aa571543 /azalea-client/src/plugins/chunks.rs
parentf12589ab809ece7dfd34c58b2ddc67dd5801ccb3 (diff)
downloadazalea-drasl-537ec510f025fa9aef628808b056a3e008c0dcb6.tar.xz
remove some unused system ordering
Diffstat (limited to 'azalea-client/src/plugins/chunks.rs')
-rw-r--r--azalea-client/src/plugins/chunks.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea-client/src/plugins/chunks.rs b/azalea-client/src/plugins/chunks.rs
index a4e19f7f..ff4f8a53 100644
--- a/azalea-client/src/plugins/chunks.rs
+++ b/azalea-client/src/plugins/chunks.rs
@@ -17,8 +17,8 @@ use bevy_ecs::prelude::*;
use tracing::{error, trace};
use crate::{
- interact::handle_start_use_item_queued, inventory::InventorySet, local_player::InstanceHolder,
- packet::game::SendPacketEvent, respawn::perform_respawn,
+ inventory::InventorySet, local_player::InstanceHolder, packet::game::SendPacketEvent,
+ respawn::perform_respawn,
};
pub struct ChunksPlugin;
@@ -33,7 +33,6 @@ impl Plugin for ChunksPlugin {
)
.chain()
.before(InventorySet)
- .before(handle_start_use_item_queued)
.before(perform_respawn),
)
.add_event::<ReceiveChunkEvent>()