mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 00:48:56 +01:00
Fix SMSG_AUTH_RESPONSE when queue is full.
Patch by Gian --HG-- branch : trunk
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user