diff options
| author | mat <git@matdoes.dev> | 2025-03-25 04:32:03 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-03-25 04:32:03 +0000 |
| commit | 4c53498f0795f821066941f39917ad2e4fa9a3cc (patch) | |
| tree | 2add4eed0c7aa554419188eb5bec9f42c6e25c29 /azalea-client/src | |
| parent | b25474ad66d6d95c46d5f7e695b7d84a34f2c582 (diff) | |
| download | azalea-drasl-4c53498f0795f821066941f39917ad2e4fa9a3cc.tar.xz | |
ignore clippy warning on spawn_listener
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/plugins/events.rs | 1 |
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, |
