mirror of
https://github.com/mangosfour/server.git
synced 2025-12-20 16:37:04 +00:00
[10936] Correctly show online status of 1.12.1 realms
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
ec6089bbd8
commit
7d41f3fadf
2 changed files with 2 additions and 2 deletions
|
|
@ -924,7 +924,7 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid)
|
|||
}
|
||||
|
||||
// Show offline state for unsupported client builds and locked realms (1.x clients not support locked state show)
|
||||
if (!ok_build || (i->second.allowedSecurityLevel >= _accountSecurityLevel))
|
||||
if (!ok_build || (i->second.allowedSecurityLevel > _accountSecurityLevel))
|
||||
realmflags = RealmFlags(realmflags | REALM_FLAG_OFFLINE);
|
||||
|
||||
pkt << uint32(i->second.icon); // realm type
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue