Skip to content

Commit

Permalink
fix: useless mut
Browse files Browse the repository at this point in the history
  • Loading branch information
1zun4 committed Apr 10, 2024
1 parent 92c03a6 commit 0c2c44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azalea-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl Client {
};

let conn = Connection::new(resolved_address, proxy).await?;
let (mut conn, game_profile) =
let (conn, game_profile) =
Self::handshake(ecs_lock.clone(), entity, conn, account, address).await?;

// note that we send the proper packets in
Expand Down

0 comments on commit 0c2c44e

Please sign in to comment.