diff --git a/src/game/Opcodes.h b/src/game/Opcodes.h index 3b9c64fe1..9d3ce66e7 100644 --- a/src/game/Opcodes.h +++ b/src/game/Opcodes.h @@ -367,7 +367,7 @@ enum Opcodes SMSG_ATTACKERSTATEUPDATE = 0x14A, SMSG_BATTLEFIELD_PORT_DENIED = 0x14B, SMSG_DAMAGE_DONE_OBSOLETE = 0x14C, - SMSG_DAMAGE_TAKEN_OBSOLETE = 0x14D, + SMSG_UNIT_SPELLCAST_START = 0x14D, SMSG_CANCEL_COMBAT = 0x14E, SMSG_SPELLBREAKLOG = 0x14F, SMSG_SPELLHEALLOG = 0x150, diff --git a/src/game/SharedDefines.h b/src/game/SharedDefines.h index b1d063b76..35a4f9981 100644 --- a/src/game/SharedDefines.h +++ b/src/game/SharedDefines.h @@ -2647,9 +2647,9 @@ enum PetTameFailureReason // we need to stick to 1 version or half of the stuff will work for someone // 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 // NOTE: not set it more that supported by targeted client version with all expansions installed diff --git a/src/game/UpdateFields.h b/src/game/UpdateFields.h index c0e326c90..fb525abb1 100644 --- a/src/game/UpdateFields.h +++ b/src/game/UpdateFields.h @@ -19,7 +19,7 @@ #ifndef _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 { diff --git a/src/realmd/AuthCodes.h b/src/realmd/AuthCodes.h index 1ccb1dc21..ac035f521 100644 --- a/src/realmd/AuthCodes.h +++ b/src/realmd/AuthCodes.h @@ -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 }; -// 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 // 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 \ { \ - 11159, /* 3.3.0a and higher */ \ + 11403, /* 3.3.0a and higher */ \ 10505, /* 3.2.2a */ \ 8606, /* 2.4.3 */ \ 6005, /* 1.12.2 */ \ diff --git a/src/realmd/AuthSocket.cpp b/src/realmd/AuthSocket.cpp index 70a3148ed..6222b2f78 100644 --- a/src/realmd/AuthSocket.cpp +++ b/src/realmd/AuthSocket.cpp @@ -36,7 +36,6 @@ extern DatabaseType loginDatabase; enum eAuthCmd { - //AUTH_NO_CMD = 0xFF, AUTH_LOGON_CHALLENGE = 0x00, AUTH_LOGON_PROOF = 0x01, AUTH_RECONNECT_CHALLENGE = 0x02,