diff options
| author | mat <git@matdoes.dev> | 2025-01-29 02:09:54 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-29 02:09:54 +0000 |
| commit | befcec9b3a39fce64b23f31ecb0d56901bc0e1f4 (patch) | |
| tree | 55df9446ead7bd15a34724c55a29a018efc37f04 /azalea-inventory/src | |
| parent | ef25e77e5262c68c682d889bc58e7120c66f978a (diff) | |
| download | azalea-drasl-befcec9b3a39fce64b23f31ecb0d56901bc0e1f4.tar.xz | |
fix wrong Profile data component impl
Diffstat (limited to 'azalea-inventory/src')
| -rw-r--r-- | azalea-inventory/src/components.rs | 2 |
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>, } |
