Update to 3.3.2 client.

This commit is contained in:
tomrus88 2010-02-03 04:31:26 +03:00
parent 6fef6a2e52
commit f24ba4981e
5 changed files with 6 additions and 7 deletions

View file

@ -367,7 +367,7 @@ enum Opcodes
SMSG_ATTACKERSTATEUPDATE = 0x14A, SMSG_ATTACKERSTATEUPDATE = 0x14A,
SMSG_BATTLEFIELD_PORT_DENIED = 0x14B, SMSG_BATTLEFIELD_PORT_DENIED = 0x14B,
SMSG_DAMAGE_DONE_OBSOLETE = 0x14C, SMSG_DAMAGE_DONE_OBSOLETE = 0x14C,
SMSG_DAMAGE_TAKEN_OBSOLETE = 0x14D, SMSG_UNIT_SPELLCAST_START = 0x14D,
SMSG_CANCEL_COMBAT = 0x14E, SMSG_CANCEL_COMBAT = 0x14E,
SMSG_SPELLBREAKLOG = 0x14F, SMSG_SPELLBREAKLOG = 0x14F,
SMSG_SPELLHEALLOG = 0x150, SMSG_SPELLHEALLOG = 0x150,

View file

@ -2647,9 +2647,9 @@ enum PetTameFailureReason
// we need to stick to 1 version or half of the stuff will work for someone // we need to stick to 1 version or half of the stuff will work for someone
// others will not and opposite // others will not and opposite
// will only support WoW, WoW:TBC and WoW:WotLK 3.3.0a client build 11159... // will only support WoW, WoW:TBC and WoW:WotLK 3.3.2 client build 11403...
#define EXPECTED_MANGOSD_CLIENT_BUILD {11159, 0} #define EXPECTED_MANGOSD_CLIENT_BUILD {11403, 0}
// max supported expansion level in mangosd // max supported expansion level in mangosd
// NOTE: not set it more that supported by targeted client version with all expansions installed // NOTE: not set it more that supported by targeted client version with all expansions installed

View file

@ -19,7 +19,7 @@
#ifndef _UPDATEFIELDS_AUTO_H #ifndef _UPDATEFIELDS_AUTO_H
#define _UPDATEFIELDS_AUTO_H #define _UPDATEFIELDS_AUTO_H
// Auto generated for version 3, 3, 0, 11159 // Auto generated for version 3, 3, 2, 11403
enum EObjectFields enum EObjectFields
{ {

View file

@ -43,13 +43,13 @@ enum eAuthResults
REALM_AUTH_PARENTAL_CONTROL = 0x0f ///< Access to this account has been blocked by parental controls. Your settings may be changed in your account preferences at <site> REALM_AUTH_PARENTAL_CONTROL = 0x0f ///< Access to this account has been blocked by parental controls. Your settings may be changed in your account preferences at <site>
}; };
// will only support WoW 1.12.1/1.12.2 , WoW:TBC 2.4.3 and WoW:WotLK 3.2.2a, client builds 10505, 8606, 6005, 5875 // will only support WoW 1.12.1/1.12.2 , WoW:TBC 2.4.3 and WoW:WotLK 3.3.2, client builds 10505, 8606, 6005, 5875
// if you need more from old build then add it in cases in relamd sources code // if you need more from old build then add it in cases in relamd sources code
// list sorted from high to low build and first build used as low bound for accepted by default range (any > it will accepted by realmd at least) // list sorted from high to low build and first build used as low bound for accepted by default range (any > it will accepted by realmd at least)
#define EXPECTED_REALMD_CLIENT_BUILD \ #define EXPECTED_REALMD_CLIENT_BUILD \
{ \ { \
11159, /* 3.3.0a and higher */ \ 11403, /* 3.3.0a and higher */ \
10505, /* 3.2.2a */ \ 10505, /* 3.2.2a */ \
8606, /* 2.4.3 */ \ 8606, /* 2.4.3 */ \
6005, /* 1.12.2 */ \ 6005, /* 1.12.2 */ \

View file

@ -36,7 +36,6 @@ extern DatabaseType loginDatabase;
enum eAuthCmd enum eAuthCmd
{ {
//AUTH_NO_CMD = 0xFF,
AUTH_LOGON_CHALLENGE = 0x00, AUTH_LOGON_CHALLENGE = 0x00,
AUTH_LOGON_PROOF = 0x01, AUTH_LOGON_PROOF = 0x01,
AUTH_RECONNECT_CHALLENGE = 0x02, AUTH_RECONNECT_CHALLENGE = 0x02,