mirror of
https://github.com/mangosfour/server.git
synced 2025-12-29 07:37:05 +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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "9747"
|
||||
#define REVISION_NR "9748"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_9702_01_characters_item"
|
||||
#define REVISION_DB_MANGOS "required_9747_01_mangos_battleground_template"
|
||||
#define REVISION_DB_REALMD "required_9746_01_realmd_realmlist"
|
||||
#define REVISION_DB_REALMD "required_9748_01_realmd_realmlist"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue