diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-16 01:15:31 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-16 01:15:31 +0200 |
commit | 502e2ad19af4891a2f3d3ad2cb457523f19770f0 (patch) | |
tree | c223cf4dc874e0218a56b9489c5b3d010ce5fb22 /src/authserver/Server/AuthSocket.cpp | |
parent | 9d2395e1d379e539bd6da0138cb425532c848cb6 (diff) |
Fixed realmid on realmlist packet
Diffstat (limited to 'src/authserver/Server/AuthSocket.cpp')
-rw-r--r-- | src/authserver/Server/AuthSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authserver/Server/AuthSocket.cpp b/src/authserver/Server/AuthSocket.cpp index 9f09e7fe2a..c662f544f6 100644 --- a/src/authserver/Server/AuthSocket.cpp +++ b/src/authserver/Server/AuthSocket.cpp @@ -1030,7 +1030,7 @@ bool AuthSocket::_HandleRealmList() pkt << AmountOfCharacters; pkt << realm.timezone; // realm category if (_expversion & POST_BC_EXP_FLAG) // 2.x and 3.x clients - pkt << uint8(0x2C); // unk, may be realm number/id? + pkt << uint8(realm.m_ID); else pkt << uint8(0x0); // 1.12.1 and 1.12.2 clients |