diff --git a/src/game/World.h b/src/game/World.h index 47e822f26..557e7a232 100644 --- a/src/game/World.h +++ b/src/game/World.h @@ -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, diff --git a/src/realmd/AuthSocket.cpp b/src/realmd/AuthSocket.cpp index 979a5263a..c956e6049 100644 --- a/src/realmd/AuthSocket.cpp +++ b/src/realmd/AuthSocket.cpp @@ -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 }*/ } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c0a0ea416..c09e9b530 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9677" + #define REVISION_NR "9678" #endif // __REVISION_NR_H__