Core/Authserver: Do not close the socket immediately when user types in invalid authenticator token to allow receiving failure packet

This commit is contained in:
Shauren
2016-01-05 18:46:21 +01:00
parent 4f2cd84625
commit a3dbfa5eb6

View File

@@ -540,7 +540,7 @@ bool AuthSession::HandleLogonProof()
packet << uint8(3);
packet << uint8(0);
SendPacket(packet);
return false;
return true;
}
}