From efc28db6cfa3cf45561610dcba9b2819553aa025 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 5 Apr 2025 01:46:14 +0330 Subject: remove unnecessary ecs system ordering for handle_outgoing_packets --- azalea-client/src/plugins/chat/mod.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'azalea-client/src/plugins/chat') diff --git a/azalea-client/src/plugins/chat/mod.rs b/azalea-client/src/plugins/chat/mod.rs index 1e083c94..3d03d24e 100644 --- a/azalea-client/src/plugins/chat/mod.rs +++ b/azalea-client/src/plugins/chat/mod.rs @@ -19,7 +19,6 @@ use bevy_ecs::{ use handler::{SendChatKindEvent, handle_send_chat_kind_event}; use uuid::Uuid; -use super::packet::game::handle_outgoing_packets; use crate::client::Client; pub struct ChatPlugin; @@ -30,11 +29,7 @@ impl Plugin for ChatPlugin { .add_event::() .add_systems( Update, - ( - handle_send_chat_event, - handle_send_chat_kind_event.after(handle_outgoing_packets), - ) - .chain(), + (handle_send_chat_event, handle_send_chat_kind_event).chain(), ); } } -- cgit v1.2.3