diff options
| author | mat <git@matdoes.dev> | 2025-01-25 22:34:00 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-25 22:34:00 +0000 |
| commit | fe423416b494e91f72dc91308b157d734f8c50f2 (patch) | |
| tree | 691cff16d96384eeda526976b957ea6c6c5c3d42 /azalea-client/src | |
| parent | b6ddde99eaf03466744bc4448bc3a4117ea2cd86 (diff) | |
| download | azalea-drasl-fe423416b494e91f72dc91308b157d734f8c50f2.tar.xz | |
Rename Connection::configuration to config and add some clientbound functions that already existed serverbound
taken from Shay's fork: https://github.com/Shays-Forks/azalea/commit/b0ca6076ed411b31e32a4abaa0350eb297067476
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 5970ab40..662a1294 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -451,7 +451,7 @@ impl Client { p.game_profile ); conn.write(ServerboundLoginAcknowledged {}).await?; - break (conn.configuration(), p.game_profile); + break (conn.config(), p.game_profile); } ClientboundLoginPacket::LoginDisconnect(p) => { debug!("Got disconnect {:?}", p); |
