diff --git a/src/realmd/AuthCodes.h b/src/realmd/AuthCodes.h index aa98567e6..1ccb1dc21 100644 --- a/src/realmd/AuthCodes.h +++ b/src/realmd/AuthCodes.h @@ -49,7 +49,8 @@ enum eAuthResults #define EXPECTED_REALMD_CLIENT_BUILD \ { \ - 10505, /* 3.2.2a and higher */ \ + 11159, /* 3.3.0a and higher */ \ + 10505, /* 3.2.2a */ \ 8606, /* 2.4.3 */ \ 6005, /* 1.12.2 */ \ 5875, /* 1.12.1 */ \ diff --git a/src/realmd/AuthSocket.cpp b/src/realmd/AuthSocket.cpp index 35c3c3c52..70a3148ed 100644 --- a/src/realmd/AuthSocket.cpp +++ b/src/realmd/AuthSocket.cpp @@ -347,6 +347,7 @@ void AuthSocket::SendProof(Sha1Hash sha) } case 8606: // 2.4.3 case 10505: // 3.2.2a + case 11159: // 3.3.0a default: // or later { sAuthLogonProof_S proof; @@ -980,6 +981,7 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid) case 8606: // 2.4.3 case 10505: // 3.2.2a + case 11159: // 3.3.0a default: // and later { pkt << uint32(0); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index f0f62a018..12caa2eea 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9136" + #define REVISION_NR "9137" #endif // __REVISION_NR_H__