aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-01-05 18:46:21 +0100
committerShauren <shauren.trinity@gmail.com>2016-01-05 18:46:21 +0100
commita3dbfa5eb66b127ff98d9752c35f70a12d06ff3b (patch)
tree653e91230d0d894fea4eeadc3cd255d8c6062733
parent4f2cd84625e36bb300317b724489e8aa0c2a22df (diff)
Core/Authserver: Do not close the socket immediately when user types in invalid authenticator token to allow receiving failure packet
-rw-r--r--src/server/authserver/Server/AuthSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Server/AuthSession.cpp b/src/server/authserver/Server/AuthSession.cpp
index bcb1dd3fddc..60e9b734b13 100644
--- a/src/server/authserver/Server/AuthSession.cpp
+++ b/src/server/authserver/Server/AuthSession.cpp
@@ -540,7 +540,7 @@ bool AuthSession::HandleLogonProof()
packet << uint8(3);
packet << uint8(0);
SendPacket(packet);
- return false;
+ return true;
}
}