[9678] Some comments for realmd data.

This commit is contained in:
VladimirMangos 2010-04-06 06:23:52 +04:00
parent 1b536c03e6
commit 068fca0d74
3 changed files with 8 additions and 7 deletions

View file

@ -319,7 +319,7 @@ enum BillingPlanFlags
SESSION_ENABLE_CAIS = 0x80,
};
/// Type of server, this is values from second column of Cfg_Configs.dbc
/// Type of server, this is values from second column of Cfg_Configs.dbc (1.12.1 have another numeration)
enum RealmType
{
REALM_TYPE_NORMAL = 0,
@ -331,7 +331,7 @@ enum RealmType
// replaced by REALM_PVP in realm list
};
/// This is values from first column of Cfg_Categories.dbc
/// This is values from first column of Cfg_Categories.dbc (1.12.1 have another numeration)
enum RealmZone
{
REALM_ZONE_UNKNOWN = 0, // any language
@ -365,6 +365,7 @@ enum RealmZone
REALM_ZONE_QA_SERVER = 28, // any language
REALM_ZONE_CN9 = 29, // basic-Latin at create, any at login
REALM_ZONE_TEST_SERVER_2 = 30, // any language
// in 3.x
REALM_ZONE_CN10 = 31, // basic-Latin at create, any at login
REALM_ZONE_CTC = 32,
REALM_ZONE_CNC = 33,

View file

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

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9677"
#define REVISION_NR "9678"
#endif // __REVISION_NR_H__