aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xazalea-protocol/src/packets/login/serverbound_hello_packet.rs2
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)]