Possible queue bug fix.

Player flags enum update.
This commit is contained in:
tomrus88 2010-01-17 22:09:10 +03:00
parent 925ea7630e
commit f7de2ce1d7
6 changed files with 45 additions and 44 deletions

View file

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