fix: HandshakeRequestPacket inherits RequestPacket

This commit is contained in:
Oliver Booth 2024-02-12 17:58:38 +00:00
parent 65cb143b06
commit ff78acfb56
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ namespace TcpDotNet.Protocol.Packets.ServerBound;
/// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />.
/// </summary>
[Packet(0x7FFFFFE0)]
internal sealed class HandshakeRequestPacket : Packet
internal sealed class HandshakeRequestPacket : RequestPacket
{
/// <summary>
/// Initializes a new instance of the <see cref="HandshakeRequestPacket" /> class.