diff options
| author | mat <git@matdoes.dev> | 2025-06-08 22:46:26 -0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-06-08 22:46:26 -0330 |
| commit | 3087b0c996dbd3fb9a1dbcac4bf5c32f992c2e5e (patch) | |
| tree | 7d3e889f0f6c45be331d4396f4bdc90496defeef /azalea-client/src/plugins/join.rs | |
| parent | 338f931c51ab3665c7c18124ca3e35bfd2ff5ca0 (diff) | |
| download | azalea-drasl-3087b0c996dbd3fb9a1dbcac4bf5c32f992c2e5e.tar.xz | |
add support for panicking on warn/error in simulation tests
Diffstat (limited to 'azalea-client/src/plugins/join.rs')
| -rw-r--r-- | azalea-client/src/plugins/join.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-client/src/plugins/join.rs b/azalea-client/src/plugins/join.rs index 09eeff59..8d094b7d 100644 --- a/azalea-client/src/plugins/join.rs +++ b/azalea-client/src/plugins/join.rs @@ -3,6 +3,7 @@ use std::{net::SocketAddr, sync::Arc}; use azalea_entity::{LocalEntity, indexing::EntityUuidIndex}; use azalea_protocol::{ ServerAddress, + common::client_information::ClientInformation, connect::{Connection, ConnectionError, Proxy}, packets::{ ClientIntention, ConnectionProtocol, PROTOCOL_VERSION, @@ -215,7 +216,7 @@ pub fn poll_create_connection_task( write_conn, ConnectionProtocol::Login, ), - client_information: crate::ClientInformation::default(), + client_information: ClientInformation::default(), instance_holder, metadata: azalea_entity::metadata::PlayerMetadataBundle::default(), }, |
