aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/inventory.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/inventory.rs
parentf250978cdd789d8ceb10cb225970a408933f508b (diff)
downloadazalea-drasl-efc28db6cfa3cf45561610dcba9b2819553aa025.tar.xz
remove unnecessary ecs system ordering for handle_outgoing_packets
Diffstat (limited to 'azalea-client/src/plugins/inventory.rs')
-rw-r--r--azalea-client/src/plugins/inventory.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/inventory.rs b/azalea-client/src/plugins/inventory.rs
index 844dd248..e6394ab8 100644
--- a/azalea-client/src/plugins/inventory.rs
+++ b/azalea-client/src/plugins/inventory.rs
@@ -26,7 +26,6 @@ use bevy_ecs::{
};
use tracing::{error, warn};
-use super::packet::game::handle_outgoing_packets;
use crate::{
Client, local_player::PlayerAbilities, packet::game::SendPacketEvent, respawn::perform_respawn,
};
@@ -47,7 +46,7 @@ impl Plugin for InventoryPlugin {
handle_menu_opened_event,
handle_set_container_content_event,
handle_container_click_event,
- handle_container_close_event.before(handle_outgoing_packets),
+ handle_container_close_event,
handle_client_side_close_container_event,
)
.chain()