From f9650d4a36080ea2a4d4e0daabb4710631c9dc27 Mon Sep 17 00:00:00 2001 From: Spp Date: Wed, 28 Apr 2010 08:55:07 +0200 Subject: Fix SMSG_AUTH_RESPONSE when queue is full. Patch by Gian --HG-- branch : trunk --- src/game/WorldSession.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/WorldSession.cpp b/src/game/WorldSession.cpp index 5ebfabb9e6b..30688b7e915 100644 --- a/src/game/WorldSession.cpp +++ b/src/game/WorldSession.cpp @@ -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); } } -- cgit v1.2.3