mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 13:37:01 +00:00
[9748] Fixed startup problems after recent realmd DB.
This commit is contained in:
parent
dbfb1fc8ef
commit
92b11459b1
10 changed files with 39 additions and 26 deletions
|
|
@ -179,6 +179,20 @@ enum AccountTypes
|
|||
SEC_CONSOLE = 4 // must be always last in list, accounts must have less security level always also
|
||||
};
|
||||
|
||||
// Used in mangosd/realmd
|
||||
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_NEW_PLAYERS = 0x20,
|
||||
REALM_FLAG_RECOMMENDED = 0x40,
|
||||
REALM_FLAG_FULL = 0x80
|
||||
};
|
||||
|
||||
enum LocaleConstant
|
||||
{
|
||||
LOCALE_enUS = 0, // also enGB
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue