diff --git a/src/game/Opcodes.cpp b/src/game/Opcodes.cpp index e364bfd22..7c48a8609 100644 --- a/src/game/Opcodes.cpp +++ b/src/game/Opcodes.cpp @@ -1298,4 +1298,5 @@ OpcodeHandler opcodeTable[NUM_MSG_TYPES] = /*0x4F5*/ { "UMSG_UNKNOWN_1269", STATUS_NEVER, &WorldSession::Handle_NULL }, /*0x4F6*/ { "CMSG_WORLD_STATE_UI_TIMER_UPDATE", STATUS_LOGGEDIN, &WorldSession::HandleWorldStateUITimerUpdate }, /*0x4F7*/ { "SMSG_WORLD_STATE_UI_TIMER_UPDATE", STATUS_NEVER, &WorldSession::Handle_ServerSide }, + /*0x4F8*/ { "CMSG_UNKNOWN_1272", STATUS_NEVER, &WorldSession::Handle_NULL }, }; diff --git a/src/game/Opcodes.h b/src/game/Opcodes.h index a41e833c8..2aa539514 100644 --- a/src/game/Opcodes.h +++ b/src/game/Opcodes.h @@ -1306,7 +1306,8 @@ enum Opcodes UMSG_UNKNOWN_1269 = 0x4F5, // not found 3.2 CMSG_WORLD_STATE_UI_TIMER_UPDATE = 0x4F6, SMSG_WORLD_STATE_UI_TIMER_UPDATE = 0x4F7, - NUM_MSG_TYPES = 0x4F8 + CMSG_UNKNOWN_1272 = 0x4F8, // called from lua: CreateCharacter + NUM_MSG_TYPES = 0x4F9 }; /// Player state diff --git a/src/game/UpdateFields.h b/src/game/UpdateFields.h index 4867c8c29..c6d39ee88 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, 2, 0, 10192 +// Auto generated for version 0, 2, 2, 10257 enum EObjectFields { diff --git a/src/realmd/AuthCodes.h b/src/realmd/AuthCodes.h index b814db6ce..e091b61de 100644 --- a/src/realmd/AuthCodes.h +++ b/src/realmd/AuthCodes.h @@ -66,8 +66,8 @@ enum LoginResult // 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.2.0 client build 10192... +// will only support WoW, WoW:TBC and WoW:WotLK 3.2.2 client build 10257... -#define EXPECTED_MANGOS_CLIENT_BUILD {10192, 0} +#define EXPECTED_MANGOS_CLIENT_BUILD {10257, 0} #endif