aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMachiavelli <none@none>2010-05-16 14:46:49 +0200
committerMachiavelli <none@none>2010-05-16 14:46:49 +0200
commit2129e56f782d13b21429aa50dabf0f9f92d177da (patch)
tree9837356e2d0cc2e206bdbebb302fd43cb3c92225 /src
parentcef21f6e39798aec93b4607a500f985ef9becd06 (diff)
Don´t kick sessions that are ´idle´ in the login queue.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/WorldSession.h2
1 files changed, 1 insertions, 1 deletions
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;
}