mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[0015] Allow 4.0.6a and 4.3.0 to connect to realmd.
This commit is contained in:
parent
78ccf5882e
commit
b3d9910009
3 changed files with 7 additions and 1 deletions
|
|
@ -299,6 +299,8 @@ void AuthSocket::SendProof(Sha1Hash sha)
|
|||
case 11403: // 3.3.2
|
||||
case 11723: // 3.3.3a
|
||||
case 12340: // 3.3.5a
|
||||
case 13623: // 4.0.6a
|
||||
case 15050: // 4.3.0
|
||||
case 15595: // 4.3.4
|
||||
default: // or later
|
||||
{
|
||||
|
|
@ -955,6 +957,8 @@ void AuthSocket::LoadRealmlist(ByteBuffer& pkt, uint32 acctid)
|
|||
case 11403: // 3.3.2
|
||||
case 11723: // 3.3.3a
|
||||
case 12340: // 3.3.5a
|
||||
case 13623: // 4.0.6a
|
||||
case 15050: // 4.3.0
|
||||
case 15595: // 4.3.4
|
||||
default: // and later
|
||||
{
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@ extern DatabaseType LoginDatabase;
|
|||
static RealmBuildInfo ExpectedRealmdClientBuilds[] =
|
||||
{
|
||||
{15595, 4, 3, 4, ' '}, // highest supported build, also auto accept all above for simplify future supported builds testing
|
||||
{15050, 4, 3, 0, ' '},
|
||||
{13623, 4, 0, 6, 'a'},
|
||||
{12340, 3, 3, 5, 'a'},
|
||||
{11723, 3, 3, 3, 'a'},
|
||||
{11403, 3, 3, 2, ' '},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "0014"
|
||||
#define REVISION_NR "0015"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue