Core/PacketIO: Change size of SMSG_AUTH_CHALLENGE WorldPacket from 37 to 40 in WorldSocket::HandleSendAuthSession (#25886)

This commit is contained in:
Jan Van Buggenhout
2021-01-18 17:23:41 +01:00
committed by GitHub
parent cdfa85957e
commit c7e03e4cef

View File

@@ -126,7 +126,7 @@ bool WorldSocket::Update()
void WorldSocket::HandleSendAuthSession()
{
WorldPacket packet(SMSG_AUTH_CHALLENGE, 37);
WorldPacket packet(SMSG_AUTH_CHALLENGE, 40);
packet << uint32(1); // 1...31
packet.append(_authSeed);