From d1afd02aa84e7b4450c1607277f078eb2a0f1bf3 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 9 Jul 2023 19:11:29 -0500 Subject: Update to Bevy 0.11 (#94) * update to bevy 0.11 * clippy --------- Co-authored-by: mat --- azalea-chat/src/component.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-chat/src') diff --git a/azalea-chat/src/component.rs b/azalea-chat/src/component.rs index 59e11bbf..e087713c 100755 --- a/azalea-chat/src/component.rs +++ b/azalea-chat/src/component.rs @@ -128,7 +128,7 @@ impl IntoIterator for FormattedText { let mut v: Vec = Vec::with_capacity(siblings.len() + 1); v.push(self); for sibling in siblings { - v.extend(sibling.into_iter()); + v.extend(sibling); } v.into_iter() -- cgit v1.2.3