aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-03-25 04:32:03 +0000
committermat <git@matdoes.dev>2025-03-25 04:32:03 +0000
commit4c53498f0795f821066941f39917ad2e4fa9a3cc (patch)
tree2add4eed0c7aa554419188eb5bec9f42c6e25c29
parentb25474ad66d6d95c46d5f7e695b7d84a34f2c582 (diff)
downloadazalea-drasl-4c53498f0795f821066941f39917ad2e4fa9a3cc.tar.xz
ignore clippy warning on spawn_listener
-rw-r--r--azalea-client/src/plugins/events.rs1
1 files changed, 1 insertions, 0 deletions
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<MinecraftEntityId>>
/// 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<InLoadedChunk>, Without<SentSpawnEvent>)>,
mut commands: Commands,