aboutsummaryrefslogtreecommitdiff
path: root/azalea-inventory/src/components.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-01-29 02:09:54 +0000
committermat <git@matdoes.dev>2025-01-29 02:09:54 +0000
commitbefcec9b3a39fce64b23f31ecb0d56901bc0e1f4 (patch)
tree55df9446ead7bd15a34724c55a29a018efc37f04 /azalea-inventory/src/components.rs
parentef25e77e5262c68c682d889bc58e7120c66f978a (diff)
downloadazalea-drasl-befcec9b3a39fce64b23f31ecb0d56901bc0e1f4.tar.xz
fix wrong Profile data component impl
Diffstat (limited to 'azalea-inventory/src/components.rs')
-rw-r--r--azalea-inventory/src/components.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-inventory/src/components.rs b/azalea-inventory/src/components.rs
index 2675bee4..262cf215 100644
--- a/azalea-inventory/src/components.rs
+++ b/azalea-inventory/src/components.rs
@@ -662,7 +662,7 @@ pub struct GameProfileProperty {
#[derive(Clone, PartialEq, AzBuf)]
pub struct Profile {
- pub name: String,
+ pub name: Option<String>,
pub id: Option<Uuid>,
pub properties: Vec<GameProfileProperty>,
}