Skip to content

Commit

Permalink
Fixed realm flags enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrus88 committed Apr 5, 2010
1 parent 54c038b commit ed39d84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/realmd/AuthSocket.cpp
Expand Up @@ -1020,10 +1020,10 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid)

/*if(realmFlags & REALM_FLAG_SPECIFYBUILD)
{
pkt << uint8(0); // major
pkt << uint8(0); // minor
pkt << uint8(0); // revision
pkt << uint16(0); // build
pkt << uint8(3); // major
pkt << uint8(3); // minor
pkt << uint8(3); // revision
pkt << uint16(11723); // build
}*/
}

Expand Down
6 changes: 3 additions & 3 deletions src/realmd/AuthSocket.h
Expand Up @@ -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_UNK1 = 0x08,
REALM_FLAG_UNK2 = 0x10,
REALM_FLAG_RECOMMENDED = 0x20, // client checks pop == 600f
REALM_FLAG_NEW = 0x40, // client checks pop == 200f
REALM_FLAG_FULL = 0x80 // client checks pop == 400f
REALM_FLAG_NEW_PLAYERS = 0x20,
REALM_FLAG_RECOMMENDED = 0x40,
REALM_FLAG_FULL = 0x80
};

/// Handle login commands
Expand Down

0 comments on commit ed39d84

Please sign in to comment.