refactor(server): explicitly mark internal struct as non-serialisable

This commit is contained in:
Anna 2023-10-08 20:44:39 -04:00
parent a4bf201ffa
commit 5ac8041f19
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 3 deletions

View File

@ -397,16 +397,14 @@ impl Customize {
}
}
#[derive(Serialize)]
#[allow(dead_code)]
struct AnonymousPlayerInfoInternal {
#[serde(skip)]
hash: Vec<u8>,
world: i64,
x: f64,
y: f64,
z: f64,
w: f64,
#[serde(with = "serde_bytes")]
customize: Vec<u8>,
level: i64,
job: i64,