From 2129e56f782d13b21429aa50dabf0f9f92d177da Mon Sep 17 00:00:00 2001 From: Machiavelli Date: Sun, 16 May 2010 14:46:49 +0200 Subject: [PATCH] =?UTF-8?q?Don=C2=B4t=20kick=20sessions=20that=20are=20?= =?UTF-8?q?=C2=B4idle=C2=B4=20in=20the=20login=20queue.?= 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(-) 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; }