Fixed realm flags enum.

This commit is contained in:
tomrus88 2010-04-04 02:29:32 +04:00
parent 68e73f105e
commit 3f071ed1d2
2 changed files with 7 additions and 7 deletions

View file

@ -1020,10 +1020,10 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid)
/*if(realmFlags & REALM_FLAG_SPECIFYBUILD) /*if(realmFlags & REALM_FLAG_SPECIFYBUILD)
{ {
pkt << uint8(0); // major pkt << uint8(3); // major
pkt << uint8(0); // minor pkt << uint8(3); // minor
pkt << uint8(0); // revision pkt << uint8(3); // revision
pkt << uint16(0); // build pkt << uint16(11723); // build
}*/ }*/
} }

View file

@ -42,9 +42,9 @@ enum RealmFlags
REALM_FLAG_SPECIFYBUILD = 0x04, // client will show realm version in RealmList screen in form "RealmName (major.minor.revision.build)" REALM_FLAG_SPECIFYBUILD = 0x04, // client will show realm version in RealmList screen in form "RealmName (major.minor.revision.build)"
REALM_FLAG_UNK1 = 0x08, REALM_FLAG_UNK1 = 0x08,
REALM_FLAG_UNK2 = 0x10, REALM_FLAG_UNK2 = 0x10,
REALM_FLAG_RECOMMENDED = 0x20, // client checks pop == 600f REALM_FLAG_NEW_PLAYERS = 0x20,
REALM_FLAG_NEW = 0x40, // client checks pop == 200f REALM_FLAG_RECOMMENDED = 0x40,
REALM_FLAG_FULL = 0x80 // client checks pop == 400f REALM_FLAG_FULL = 0x80
}; };
/// Handle login commands /// Handle login commands