diff options
| author | mat <git@matdoes.dev> | 2026-01-03 15:46:15 -0930 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-01-03 23:22:01 -0200 |
| commit | 3137132bb93be664bc025c8e829e4f67431b4fe3 (patch) | |
| tree | 17b5d42cdf8db6052e99442fe1e82ed823641e3f /azalea-client/src | |
| parent | 57394c07a5de53061f868c131b42007707a2d7f1 (diff) | |
| download | azalea-drasl-3137132bb93be664bc025c8e829e4f67431b4fe3.tar.xz | |
cleanup
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/account/microsoft.rs | 12 | ||||
| -rw-r--r-- | azalea-client/src/plugins/interact/mod.rs | 1 |
2 files changed, 6 insertions, 7 deletions
diff --git a/azalea-client/src/account/microsoft.rs b/azalea-client/src/account/microsoft.rs index 22228eb9..ab31ee82 100644 --- a/azalea-client/src/account/microsoft.rs +++ b/azalea-client/src/account/microsoft.rs @@ -91,10 +91,10 @@ impl AccountTrait for MicrosoftAccount { let access_token = self.access_token.lock().clone(); sessionserver::join(SessionServerJoinOpts { access_token: &access_token, - public_key: public_key, - private_key: private_key, + public_key, + private_key, uuid: &self.uuid(), - server_id: &server_id, + server_id, proxy, }) .await @@ -196,10 +196,10 @@ impl AccountTrait for MicrosoftWithAccessTokenAccount { let access_token = self.access_token.lock().clone(); sessionserver::join(SessionServerJoinOpts { access_token: &access_token, - public_key: public_key, - private_key: private_key, + public_key, + private_key, uuid: &self.uuid(), - server_id: &server_id, + server_id, proxy, }) .await diff --git a/azalea-client/src/plugins/interact/mod.rs b/azalea-client/src/plugins/interact/mod.rs index 4f07c280..d8f8b8b4 100644 --- a/azalea-client/src/plugins/interact/mod.rs +++ b/azalea-client/src/plugins/interact/mod.rs @@ -30,7 +30,6 @@ use azalea_protocol::packets::game::{ s_swing::ServerboundSwing, s_use_item_on::ServerboundUseItemOn, }; -use azalea_registry::builtin::ItemKind; use azalea_world::Instance; use bevy_app::{App, Plugin, Update}; use bevy_ecs::prelude::*; |
