mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Possible queue bug fix.
Player flags enum update.
This commit is contained in:
parent
925ea7630e
commit
f7de2ce1d7
6 changed files with 45 additions and 44 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue