diff options
| author | mat <github@matdoes.dev> | 2022-07-07 00:57:50 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-07-07 00:57:50 -0500 |
| commit | 27edd4f578e7b64fdaacefa26f691e2148707a8c (patch) | |
| tree | 160d4862fe0339b56395f62d35f957d724dfc35e /azalea-protocol | |
| parent | 017651358d8aeefdadc0f3973f1fe4f394e9b14d (diff) | |
| download | azalea-drasl-27edd4f578e7b64fdaacefa26f691e2148707a8c.tar.xz | |
Update ServerboundHelloPacket
PR made in burger
Diffstat (limited to 'azalea-protocol')
| -rwxr-xr-x | azalea-protocol/src/packets/login/serverbound_hello_packet.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/login/serverbound_hello_packet.rs b/azalea-protocol/src/packets/login/serverbound_hello_packet.rs index 57a3e4d8..0f6f9a50 100755 --- a/azalea-protocol/src/packets/login/serverbound_hello_packet.rs +++ b/azalea-protocol/src/packets/login/serverbound_hello_packet.rs @@ -1,10 +1,12 @@ use azalea_buf::McBuf; use packet_macros::LoginPacket; +use uuid::Uuid; #[derive(Clone, Debug, McBuf, LoginPacket)] pub struct ServerboundHelloPacket { pub username: String, pub public_key: Option<ProfilePublicKeyData>, + pub profile_id: Option<Uuid>, } #[derive(Clone, Debug, McBuf)] |
