aboutsummaryrefslogtreecommitdiff
path: root/azalea-auth/src
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2022-08-06 07:22:19 +0000
committerGitHub <noreply@github.com>2022-08-06 02:22:19 -0500
commit5a9fca0ca9cdb46f4b866781f219756c89e2293a (patch)
treeb006e28b91a181734fb9702bb6ec510f5b2af3df /azalea-auth/src
parent1d48c3fe34edd4e2295f54bd3d79f81f58c38a8e (diff)
downloadazalea-drasl-5a9fca0ca9cdb46f4b866781f219756c89e2293a.tar.xz
Better errors (#14)
* make reading use thiserror * finish implementing all the error things * clippy warnings related to ok_or * fix some errors in other places * thiserror in more places * don't use closures in a couple places * errors in writing packet * rip backtraces * change some BufReadError::Custom to UnexpectedEnumVariant * Errors say what packet is bad * error on leftover data and fix it wasn't reading the properties for gameprofile
Diffstat (limited to 'azalea-auth/src')
-rwxr-xr-xazalea-auth/src/game_profile.rs12
1 files changed, 9 insertions, 3 deletions
diff --git a/azalea-auth/src/game_profile.rs b/azalea-auth/src/game_profile.rs
index d75f60a4..333f926f 100755
--- a/azalea-auth/src/game_profile.rs
+++ b/azalea-auth/src/game_profile.rs
@@ -1,12 +1,12 @@
+use azalea_buf::McBuf;
use std::collections::HashMap;
-
use uuid::Uuid;
-#[derive(Clone, Debug)]
+#[derive(McBuf, Debug, Clone)]
pub struct GameProfile {
pub uuid: Uuid,
pub name: String,
- pub properties: HashMap<String, String>,
+ pub properties: HashMap<String, ProfilePropertyValue>,
}
impl GameProfile {
@@ -18,3 +18,9 @@ impl GameProfile {
}
}
}
+
+#[derive(McBuf, Debug, Clone)]
+pub struct ProfilePropertyValue {
+ pub value: String,
+ pub signature: Option<String>,
+}