diff options
author | click <none@none> | 2010-12-21 05:57:53 +0100 |
---|---|---|
committer | click <none@none> | 2010-12-21 05:57:53 +0100 |
commit | 5180ed0383c1e5b19147adbe2e5f10bca50636e4 (patch) | |
tree | eb1a16c0764ccd6cbc511675782b561ce74c8312 /src/server/authserver/Server/AuthSocket.cpp | |
parent | 2f80f1b2f8906131e5b743e43e8351ef20d4a987 (diff) |
Core/AuthServer: Fix the previous commit (it might help to actually fetch what we want to work on as well)
--HG--
branch : trunk
Diffstat (limited to 'src/server/authserver/Server/AuthSocket.cpp')
-rwxr-xr-x | src/server/authserver/Server/AuthSocket.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp index 7f39c09beb6..e57424a4ee5 100755 --- a/src/server/authserver/Server/AuthSocket.cpp +++ b/src/server/authserver/Server/AuthSocket.cpp @@ -745,6 +745,7 @@ bool AuthSocket::_HandleReconnectChallenge() _build = ch->build; _expversion = (AuthHelper::IsPostBCAcceptedClientBuild(_build) ? POST_BC_EXP_FLAG : NO_VALID_EXP_FLAG) | (AuthHelper::IsPreBCAcceptedClientBuild(_build) ? PRE_BC_EXP_FLAG : NO_VALID_EXP_FLAG); + Field* fields = result->Fetch(); uint8 secLevel = fields[2].GetUInt8(); _accountSecurityLevel = secLevel <= SEC_ADMINISTRATOR ? AccountTypes(secLevel) : SEC_ADMINISTRATOR; |