Update realmd to not give vanilla clients session expired messages

This commit is contained in:
sanctum32 2013-09-19 10:56:20 +03:00 committed by Antz
parent fe7bf3f808
commit d8a1fa4acb
2 changed files with 3 additions and 2 deletions

View file

@ -834,7 +834,8 @@ bool AuthSocket::_HandleReconnectProof()
ByteBuffer pkt;
pkt << (uint8) CMD_AUTH_RECONNECT_PROOF;
pkt << (uint8) 0x00;
pkt << (uint16) 0x00; // 2 bytes zeros
if (_build > 6141) // Last vanilla, 1.12.3
pkt << (uint16) 0x00; // 2 bytes zeros
send((char const*)pkt.contents(), pkt.size());
///- Set _authed to true!

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12678"
#define REVISION_NR "12679"
#endif // __REVISION_NR_H__