diff options
| author | mat <git@matdoes.dev> | 2025-12-12 06:07:51 -0100 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-12 06:07:51 -0100 |
| commit | 7f761df3e7b72ce75be21ab9b3a533d0a5a938a5 (patch) | |
| tree | f7911496b0823bac849852ce1db90167af9a72bf /azalea-client | |
| parent | f9c25665c203d6377ace62f1e95381d037d8fd9e (diff) | |
| download | azalea-drasl-7f761df3e7b72ce75be21ab9b3a533d0a5a938a5.tar.xz | |
fix compilation errors with some feature combinations
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-client/src/plugins/login.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index f3c1bce5..74052e53 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -17,7 +17,7 @@ azalea-crypto.workspace = true azalea-entity.workspace = true azalea-inventory.workspace = true azalea-physics.workspace = true -azalea-protocol = { workspace = true, features = ["packets", "connecting"] } +azalea-protocol = { workspace = true, features = ["connecting"] } azalea-registry.workspace = true azalea-world.workspace = true bevy_app.workspace = true diff --git a/azalea-client/src/plugins/login.rs b/azalea-client/src/plugins/login.rs index 46ab20c4..5bfefe44 100644 --- a/azalea-client/src/plugins/login.rs +++ b/azalea-client/src/plugins/login.rs @@ -119,7 +119,7 @@ pub async fn auth_with_account( let private_key = encrypt_res.secret_key; #[cfg(not(feature = "online-mode"))] - let _ = account; + let _ = (account, proxy); #[cfg(feature = "online-mode")] if packet.should_authenticate { |
