diff options
| author | mat <github@matdoes.dev> | 2022-04-27 18:00:50 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-27 18:00:50 +0000 |
| commit | 9b50886c30f3e9129e054b019581264c9e6cadaf (patch) | |
| tree | 8dfcc5bb8980a86d650a0d3d7afb705624b818c6 /azalea-client/src | |
| parent | 60d1fa50c32c202dd04895caa51172948a4760b6 (diff) | |
| download | azalea-drasl-9b50886c30f3e9129e054b019581264c9e6cadaf.tar.xz | |
player info packet
Diffstat (limited to 'azalea-client/src')
| -rwxr-xr-x | azalea-client/src/connect.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs index 78370d7e..f5909f9c 100755 --- a/azalea-client/src/connect.rs +++ b/azalea-client/src/connect.rs @@ -127,6 +127,9 @@ pub async fn join_server(address: &ServerAddress) -> Result<(), String> { // TODO: reply with teleport confirm println!("Got player position packet {:?}", p); } + GamePacket::ClientboundPlayerInfoPacket(p) => { + println!("Got player info packet {:?}", p); + } }, Err(e) => { panic!("Error: {:?}", e); |
