diff options
| author | mat <github@matdoes.dev> | 2022-01-02 17:42:41 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-01-02 17:42:41 -0600 |
| commit | 394f996df27bedc68be6c1f9e9764e8f78ba6282 (patch) | |
| tree | a0a5b5ae17ae7e524fc04f844b7ffb63810861fc /azalea-client/src | |
| parent | 45871fc01e212a50ac5e6268e4677f97f8fe5bb3 (diff) | |
| download | azalea-drasl-394f996df27bedc68be6c1f9e9764e8f78ba6282.tar.xz | |
fix random warnings
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/connect.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index c04126dc..6ed25bff 100644 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -70,13 +70,6 @@ pub async fn join_server(address: &ServerAddress) -> Result<(), String> { GamePacket::ClientboundCustomPayloadPacket(p) => { println!("Got custom payload packet {:?}", p); } - // GamePacket::ClientboundKeepAlivePacket(p) => { - // println!("Got keep alive packet {:?}", p.keep_alive_id); - // } - // GamePacket::ClientboundChatMessagePacket(p) => { - // println!("Got chat message packet {:?}", p.message); - // } - _ => panic!("unhandled packet"), }, Err(e) => { println!("Error: {:?}", e); |
