aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/chunks.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-04-05 01:46:14 +0330
committermat <git@matdoes.dev>2025-04-05 01:46:14 +0330
commitefc28db6cfa3cf45561610dcba9b2819553aa025 (patch)
tree2a58147b500b760cf024b6a62cd907321c476047 /azalea-client/src/plugins/chunks.rs
parentf250978cdd789d8ceb10cb225970a408933f508b (diff)
downloadazalea-drasl-efc28db6cfa3cf45561610dcba9b2819553aa025.tar.xz
remove unnecessary ecs system ordering for handle_outgoing_packets
Diffstat (limited to 'azalea-client/src/plugins/chunks.rs')
-rw-r--r--azalea-client/src/plugins/chunks.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/chunks.rs b/azalea-client/src/plugins/chunks.rs
index 060b94e2..5599d7c9 100644
--- a/azalea-client/src/plugins/chunks.rs
+++ b/azalea-client/src/plugins/chunks.rs
@@ -16,7 +16,6 @@ use bevy_app::{App, Plugin, Update};
use bevy_ecs::prelude::*;
use tracing::{error, trace};
-use super::packet::game::handle_outgoing_packets;
use crate::{
InstanceHolder, interact::handle_block_interact_event, inventory::InventorySet,
packet::game::SendPacketEvent, respawn::perform_respawn,
@@ -33,7 +32,6 @@ impl Plugin for ChunksPlugin {
handle_chunk_batch_finished_event,
)
.chain()
- .before(handle_outgoing_packets)
.before(InventorySet)
.before(handle_block_interact_event)
.before(perform_respawn),