aboutsummaryrefslogtreecommitdiff
path: root/src/v1_19.rs
diff options
context:
space:
mode:
authorWebbiii <webbiii@webbiii.cc>2022-08-11 02:17:59 +0200
committerGitHub <noreply@github.com>2022-08-11 02:17:59 +0200
commit2572b329cc18a0413dea19297bab805be2b9f2ab (patch)
treee496da94a24e155c0b6d6d8f9728e23cca8fd4dc /src/v1_19.rs
parent9c7675ccba88a130f7096f27ee61e593fbdb6462 (diff)
downloadmcproto-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.rs4
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,