aboutsummaryrefslogtreecommitdiff
path: root/azalea-chat/src/base_component.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-chat/src/base_component.rs')
-rwxr-xr-xazalea-chat/src/base_component.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-chat/src/base_component.rs b/azalea-chat/src/base_component.rs
index ab4f5e5d..43b35aef 100755
--- a/azalea-chat/src/base_component.rs
+++ b/azalea-chat/src/base_component.rs
@@ -1,11 +1,11 @@
-use crate::{style::Style, Component};
+use crate::{style::Style, FormattedText};
use serde::Serialize;
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct BaseComponent {
// implements mutablecomponent
#[serde(skip_serializing_if = "Vec::is_empty")]
- pub siblings: Vec<Component>,
+ pub siblings: Vec<FormattedText>,
#[serde(flatten)]
pub style: Style,
}