diff options
| author | mat <git@matdoes.dev> | 2025-04-05 01:46:14 +0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-04-05 01:46:14 +0330 |
| commit | efc28db6cfa3cf45561610dcba9b2819553aa025 (patch) | |
| tree | 2a58147b500b760cf024b6a62cd907321c476047 /azalea-client/src/plugins/chat | |
| parent | f250978cdd789d8ceb10cb225970a408933f508b (diff) | |
| download | azalea-drasl-efc28db6cfa3cf45561610dcba9b2819553aa025.tar.xz | |
remove unnecessary ecs system ordering for handle_outgoing_packets
Diffstat (limited to 'azalea-client/src/plugins/chat')
| -rw-r--r-- | azalea-client/src/plugins/chat/mod.rs | 7 |
1 files changed, 1 insertions, 6 deletions
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::<ChatReceivedEvent>() .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(), ); } } |
