diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-07-04 18:24:05 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-07-04 18:24:05 +0200 |
commit | c95905ddbb22e2b5b5362b790aa851ef10d4e27e (patch) | |
tree | 669abda1d9fcea759f1240be6f96190ec81f4970 /src/server/authserver/Authentication/AuthCodes.cpp | |
parent | a6a556ce09facff3918a33be6b976e5ccb7e1469 (diff) |
Core: Added 4.3.4 opcodes from WPP, commented out some code to fix compile (switches with opcodes - duplicate case 0: labels) and fixed authentication
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.cpp')
-rw-r--r-- | src/server/authserver/Authentication/AuthCodes.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.cpp b/src/server/authserver/Authentication/AuthCodes.cpp index 5dacb2df35e..7a97cbee3de 100644 --- a/src/server/authserver/Authentication/AuthCodes.cpp +++ b/src/server/authserver/Authentication/AuthCodes.cpp @@ -19,7 +19,7 @@ namespace AuthHelper { - bool IsAcceptedBuild(int build) + bool IsAcceptedClientBuild(int build) { static int accepted_versions[] = TRINITYCORE_ACCEPTED_CLIENT_BUILD; @@ -29,9 +29,4 @@ namespace AuthHelper return false; } - - bool IsAcceptedClientBuild(int build) - { - return (IsAcceptedBuild(build)); - } }; |