mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Core/Misc: Fix typo in SendAuthWaitQue method name (#25887)
(cherry picked from commit a832a1fe90)
This commit is contained in:
committed by
Shauren
parent
9df5eb27e0
commit
dbf528be69
@@ -65,7 +65,7 @@ void WorldSession::SendAuthResponse(uint32 code, bool queued, uint32 queuePos)
|
||||
SendPacket(response.Write());
|
||||
}
|
||||
|
||||
void WorldSession::SendAuthWaitQue(uint32 position)
|
||||
void WorldSession::SendAuthWaitQueue(uint32 position)
|
||||
{
|
||||
if (position)
|
||||
{
|
||||
|
||||
@@ -1173,7 +1173,7 @@ void WorldSession::InitializeSessionCallback(LoginDatabaseQueryHolder const& hol
|
||||
if (!m_inQueue)
|
||||
SendAuthResponse(ERROR_OK, false);
|
||||
else
|
||||
SendAuthWaitQue(0);
|
||||
SendAuthWaitQueue(0);
|
||||
|
||||
SetInQueue(false);
|
||||
ResetTimeOutTime(false);
|
||||
|
||||
@@ -1042,7 +1042,7 @@ class TC_GAME_API WorldSession
|
||||
bool Update(uint32 diff, PacketFilter& updater);
|
||||
|
||||
/// Handle the authentication waiting queue (to be completed)
|
||||
void SendAuthWaitQue(uint32 position);
|
||||
void SendAuthWaitQueue(uint32 position);
|
||||
|
||||
void SendSetTimeZoneInformation();
|
||||
void SendFeatureSystemStatus();
|
||||
|
||||
@@ -527,7 +527,7 @@ bool World::RemoveQueuedPlayer(WorldSession* sess)
|
||||
// update position from iter to end()
|
||||
// iter point to first not updated socket, position store new position
|
||||
for (; iter != m_QueuedPlayer.end(); ++iter, ++position)
|
||||
(*iter)->SendAuthWaitQue(position);
|
||||
(*iter)->SendAuthWaitQueue(position);
|
||||
|
||||
return found;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user