From 4c53498f0795f821066941f39917ad2e4fa9a3cc Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 25 Mar 2025 04:32:03 +0000 Subject: [PATCH] ignore clippy warning on spawn_listener --- azalea-client/src/plugins/events.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/azalea-client/src/plugins/events.rs b/azalea-client/src/plugins/events.rs index 32e393da..92da08be 100644 --- a/azalea-client/src/plugins/events.rs +++ b/azalea-client/src/plugins/events.rs @@ -178,6 +178,7 @@ pub fn login_listener(query: Query<&LocalPlayerEvents, Added> /// sending the event twice for the same client. #[derive(Component)] pub struct SentSpawnEvent; +#[allow(clippy::type_complexity)] pub fn spawn_listener( query: Query<(Entity, &LocalPlayerEvents), (Added, Without)>, mut commands: Commands,