From 89a5a45d7e0e84e142a3ea2a95cbe44bb5274544 Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Sat, 15 Jul 2017 10:27:51 -0400 Subject: [PATCH] Fix logging in compare. --- world/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/client.cpp b/world/client.cpp index 60221f25b..b31f77c02 100644 --- a/world/client.cpp +++ b/world/client.cpp @@ -458,7 +458,7 @@ bool Client::HandleSendLoginInfoPacket(const EQApplicationPacket *app) { // Track who is in and who is out of the game char *inout= (char *) ""; - if (cle->GetOnline() < CLE_Status_Online){ + if (cle->GetOnline() == CLE_Status_Never){ // Desktop -> Char Select inout = (char *) "In"; }