Fix SMSG_AUTH_RESPONSE when queue is full.

Patch by Gian

--HG--
branch : trunk
This commit is contained in:
Spp
2010-04-28 08:55:07 +02:00
parent e719bd32a3
commit f9650d4a36

View File

@@ -550,9 +550,10 @@ void WorldSession::SendAuthWaitQue(uint32 position)
}
else
{
WorldPacket packet(SMSG_AUTH_RESPONSE, 5);
WorldPacket packet(SMSG_AUTH_RESPONSE, 6);
packet << uint8(AUTH_WAIT_QUEUE);
packet << uint32 (position);
packet << uint32(position);
packet << uint8(0); // unk
SendPacket(&packet);
}
}