diff options
author | n0n4m3 <none@none> | 2010-04-11 11:23:32 +0400 |
---|---|---|
committer | n0n4m3 <none@none> | 2010-04-11 11:23:32 +0400 |
commit | cdec48b9efab92c0af3bb1b96de0b4e8566f5a35 (patch) | |
tree | b76ddc7ab80476156f77008d786fe344c9375feb /src/trinityrealm/AuthSocket.h | |
parent | 7ffc9ef40bd8a832bf14e0202b8da0ec98516725 (diff) |
Some fixes for quests/basePoints calculation, realm server.
--HG--
branch : trunk
Diffstat (limited to 'src/trinityrealm/AuthSocket.h')
-rw-r--r-- | src/trinityrealm/AuthSocket.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/trinityrealm/AuthSocket.h b/src/trinityrealm/AuthSocket.h index 13fc9b0080a..5bcbe9cdabd 100644 --- a/src/trinityrealm/AuthSocket.h +++ b/src/trinityrealm/AuthSocket.h @@ -30,6 +30,19 @@ #include "RealmSocket.h" +enum RealmFlags +{ + REALM_FLAG_NONE = 0x00, + REALM_FLAG_INVALID = 0x01, + REALM_FLAG_OFFLINE = 0x02, + 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 +}; + /// Handle login commands class AuthSocket: public RealmSocket::Session { |