[9314] Add new explcitly supported build to realmd

This commit is contained in:
VladimirMangos 2010-02-06 18:56:29 +03:00
parent c179509df3
commit 9d191da17d
3 changed files with 5 additions and 2 deletions

View file

@ -49,7 +49,8 @@ enum eAuthResults
#define EXPECTED_REALMD_CLIENT_BUILD \
{ \
11159, /* 3.3.0a and higher */ \
11403, /* 3.3.2 and higher */ \
11159, /* 3.3.0a */ \
10505, /* 3.2.2a */ \
8606, /* 2.4.3 */ \
6005, /* 1.12.2 */ \

View file

@ -347,6 +347,7 @@ void AuthSocket::SendProof(Sha1Hash sha)
case 8606: // 2.4.3
case 10505: // 3.2.2a
case 11159: // 3.3.0a
case 11403: // 3.3.2
default: // or later
{
sAuthLogonProof_S proof;
@ -981,6 +982,7 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid)
case 8606: // 2.4.3
case 10505: // 3.2.2a
case 11159: // 3.3.0a
case 11403: // 3.3.2
default: // and later
{
pkt << uint32(0);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9313"
#define REVISION_NR "9314"
#endif // __REVISION_NR_H__