diff options
author | Webbiii <webbiii@webbiii.cc> | 2022-08-11 02:17:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 02:17:59 +0200 |
commit | 2572b329cc18a0413dea19297bab805be2b9f2ab (patch) | |
tree | e496da94a24e155c0b6d6d8f9728e23cca8fd4dc /src/v1_19.rs | |
parent | 9c7675ccba88a130f7096f27ee61e593fbdb6462 (diff) | |
download | mcproto-rs-2572b329cc18a0413dea19297bab805be2b9f2ab.tar.gz mcproto-rs-2572b329cc18a0413dea19297bab805be2b9f2ab.tar.bz2 mcproto-rs-2572b329cc18a0413dea19297bab805be2b9f2ab.zip |
Fixed 1.19 Login Start packet
Diffstat (limited to 'src/v1_19.rs')
-rw-r--r-- | src/v1_19.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/v1_19.rs b/src/v1_19.rs index 0f2d58d..d07238e 100644 --- a/src/v1_19.rs +++ b/src/v1_19.rs @@ -798,8 +798,8 @@ proto_byte_enum!(HandshakeNextState, proto_struct!(LoginSignatureData { key_expires: i64, - public_key: Option<CountedArray<u8, VarInt>>, - signature: Option<CountedArray<u8, VarInt>> + public_key: CountedArray<u8, VarInt>, + signature: CountedArray<u8, VarInt> }); proto_byte_enum!(EncryptionResponseData, |