Don´t kick sessions that are ´idle´ in the login queue.

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-05-16 14:46:49 +02:00
parent cef21f6e39
commit 2129e56f78

View File

@@ -300,7 +300,7 @@ class WorldSession
}
bool IsConnectionIdle() const
{
if (m_timeOutTime <= 0)
if (m_timeOutTime <= 0 && !m_inQueue)
return true;
return false;
}