aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-12-12 00:20:50 -0430
committermat <git@matdoes.dev>2025-12-12 00:20:50 -0430
commit82ad975242292d5875780b4398b62637674bf50a (patch)
treea904d9dde2a7467cddfb7dc6b3ae4de485bd8b0f /azalea-core/src
parent4a66f002c276a57e028e9456f6800b0b3c248885 (diff)
downloadazalea-drasl-82ad975242292d5875780b4398b62637674bf50a.tar.xz
clippy
Diffstat (limited to 'azalea-core/src')
-rw-r--r--azalea-core/src/registry_holder/entity_effect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/registry_holder/entity_effect.rs b/azalea-core/src/registry_holder/entity_effect.rs
index 7615c4df..442b0e1a 100644
--- a/azalea-core/src/registry_holder/entity_effect.rs
+++ b/azalea-core/src/registry_holder/entity_effect.rs
@@ -179,7 +179,7 @@ impl Deserialize for PlaySound {
// strings.
list.strings()
.ok_or(DeserializeError::MissingField)?
- .into_iter()
+ .iter()
.map(|s| {
SoundEvent::from_str(&s.to_str())
.map(Holder::Reference)