From 2129e56f782d13b21429aa50dabf0f9f92d177da Mon Sep 17 00:00:00 2001 From: Machiavelli Date: Sun, 16 May 2010 14:46:49 +0200 Subject: Don´t kick sessions that are ´idle´ in the login queue. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --HG-- branch : trunk --- src/game/WorldSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/WorldSession.h b/src/game/WorldSession.h index be511f219bc..a6cfae9c06d 100644 --- a/src/game/WorldSession.h +++ b/src/game/WorldSession.h @@ -300,7 +300,7 @@ class WorldSession } bool IsConnectionIdle() const { - if (m_timeOutTime <= 0) + if (m_timeOutTime <= 0 && !m_inQueue) return true; return false; } -- cgit v1.2.3