diff options
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | azalea-client/src/connect.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index b0d7dffc..7c1880fa 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -73,11 +73,10 @@ impl Client { match packet_result { Ok(packet) => match packet { LoginPacket::ClientboundHelloPacket(p) => { - println!("Got encryption request {:?} {:?}", p.nonce, p.public_key); + println!("Got encryption request"); let e = azalea_auth::encryption::encrypt(&p.public_key, &p.nonce).unwrap(); // TODO: authenticate with the server here (authenticateServer) - println!("Sending encryption response {:?}", e); conn.write( ServerboundKeyPacket { |
