aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Authentication/AuthCodes.h
diff options
context:
space:
mode:
authorSupabad <Supabad.trinity@gmail.com>2011-12-16 12:55:02 +0100
committerSupabad <Supabad.trinity@gmail.com>2011-12-16 12:55:02 +0100
commit1af4d40be6d689a12ccf2fd1b45c7f950be0c3ac (patch)
tree0f6fa6246100c73bfb10baf7d7c02a59c4dde757 /src/server/authserver/Authentication/AuthCodes.h
parentd237134d901fa8762dd49460ec43794afd7d6327 (diff)
4.x simplify Authhandler
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.h')
-rwxr-xr-xsrc/server/authserver/Authentication/AuthCodes.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.h b/src/server/authserver/Authentication/AuthCodes.h
index 88e2649ce7e..085326378da 100755
--- a/src/server/authserver/Authentication/AuthCodes.h
+++ b/src/server/authserver/Authentication/AuthCodes.h
@@ -65,21 +65,13 @@ enum LoginResult
LOGIN_LOCKED_ENFORCED = 0x10,
};
-#define POST_BC_ACCEPTED_CLIENT_BUILD {14545 ,12340, 11723, 11403, 11159, 10571, 10505, 10146, 9947, 8606, 0}
-#define PRE_BC_ACCEPTED_CLIENT_BUILD {5875, 6005, 0}
+#define TRINITYCORE_ACCEPTED_CLIENT_BUILD {14545, 14480, 14333, 14007, 0}
-enum ExpansionFlags
-{
- POST_BC_EXP_FLAG = 0x2,
- PRE_BC_EXP_FLAG = 0x1,
- NO_VALID_EXP_FLAG = 0x0
-};
namespace AuthHelper
{
bool IsAcceptedClientBuild(int build);
- bool IsPostBCAcceptedClientBuild(int build);
- bool IsPreBCAcceptedClientBuild(int build);
+ bool IsAcceptedBuild(int build);
};
#endif