aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-12-09 01:27:44 +0000
committermat <git@matdoes.dev>2025-12-09 13:26:12 +1100
commitba3a88336a074f902667d3e13471af62b431da04 (patch)
tree4c7052376abfccff8c090192c90d92280154f9c5 /azalea-client/src
parent4fde1ecd61c0f67057df0c55a45ba398da580ae1 (diff)
downloadazalea-drasl-ba3a88336a074f902667d3e13471af62b431da04.tar.xz
move offline-mode uuid generation to azalea-crypto
Diffstat (limited to 'azalea-client/src')
-rw-r--r--azalea-client/src/account.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/account.rs b/azalea-client/src/account.rs
index 847029c9..faaa551a 100644
--- a/azalea-client/src/account.rs
+++ b/azalea-client/src/account.rs
@@ -264,7 +264,7 @@ impl Account {
/// Minecraft's offline-mode UUIDv3 algorithm.
pub fn uuid_or_offline(&self) -> Uuid {
self.uuid
- .unwrap_or_else(|| azalea_auth::offline::generate_uuid(&self.username))
+ .unwrap_or_else(|| azalea_crypto::offline::generate_uuid(&self.username))
}
}