mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
Updated to latest PTR build 10747.
This commit is contained in:
parent
2732c33465
commit
9b4a0f3fb1
5 changed files with 12 additions and 5 deletions
|
|
@ -652,6 +652,7 @@ void PlayerMenu::SendQuestQueryResponse( Quest const *pQuest )
|
||||||
}
|
}
|
||||||
data << uint32(pQuest->ReqCreatureOrGOCount[iI]);
|
data << uint32(pQuest->ReqCreatureOrGOCount[iI]);
|
||||||
data << uint32(pQuest->ReqSourceId[iI]);
|
data << uint32(pQuest->ReqSourceId[iI]);
|
||||||
|
data << uint32(0); // req source count?
|
||||||
}
|
}
|
||||||
|
|
||||||
for (iI = 0; iI < QUEST_ITEM_OBJECTIVES_COUNT; ++iI)
|
for (iI = 0; iI < QUEST_ITEM_OBJECTIVES_COUNT; ++iI)
|
||||||
|
|
|
||||||
|
|
@ -1309,4 +1309,7 @@ OpcodeHandler opcodeTable[NUM_MSG_TYPES] =
|
||||||
/*0x500*/ { "CMSG_QUERY_QUESTS_COMPLETED", STATUS_LOGGEDIN, &WorldSession::HandleQueryQuestsCompleted },
|
/*0x500*/ { "CMSG_QUERY_QUESTS_COMPLETED", STATUS_LOGGEDIN, &WorldSession::HandleQueryQuestsCompleted },
|
||||||
/*0x501*/ { "SMSG_QUERY_QUESTS_COMPLETED_RESPONSE", STATUS_NEVER, &WorldSession::Handle_ServerSide },
|
/*0x501*/ { "SMSG_QUERY_QUESTS_COMPLETED_RESPONSE", STATUS_NEVER, &WorldSession::Handle_ServerSide },
|
||||||
/*0x502*/ { "CMSG_GM_REPORT_LAG", STATUS_NEVER, &WorldSession::Handle_NULL },
|
/*0x502*/ { "CMSG_GM_REPORT_LAG", STATUS_NEVER, &WorldSession::Handle_NULL },
|
||||||
|
/*0x503*/ { "UMSG_UNKNOWN_1283", STATUS_NEVER, &WorldSession::Handle_NULL },
|
||||||
|
/*0x504*/ { "UMSG_UNKNOWN_1284", STATUS_NEVER, &WorldSession::Handle_NULL },
|
||||||
|
/*0x505*/ { "UMSG_UNKNOWN_1285", STATUS_NEVER, &WorldSession::Handle_NULL },
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1315,9 +1315,12 @@ enum Opcodes
|
||||||
UMSG_UNKNOWN_1278 = 0x4FE, // not found 10596
|
UMSG_UNKNOWN_1278 = 0x4FE, // not found 10596
|
||||||
CMSG_READY_FOR_ACCOUNT_DATA_TIMES = 0x4FF, // lua: ReadyForAccountDataTimes
|
CMSG_READY_FOR_ACCOUNT_DATA_TIMES = 0x4FF, // lua: ReadyForAccountDataTimes
|
||||||
CMSG_QUERY_QUESTS_COMPLETED = 0x500, // lua: QueryQuestsCompleted
|
CMSG_QUERY_QUESTS_COMPLETED = 0x500, // lua: QueryQuestsCompleted
|
||||||
SMSG_QUERY_QUESTS_COMPLETED_RESPONSE = 0x501, // response to 0x4FF
|
SMSG_QUERY_QUESTS_COMPLETED_RESPONSE = 0x501, // response to 0x500
|
||||||
CMSG_GM_REPORT_LAG = 0x502, // lua: GMReportLag
|
CMSG_GM_REPORT_LAG = 0x502, // lua: GMReportLag
|
||||||
NUM_MSG_TYPES = 0x503
|
UMSG_UNKNOWN_1283 = 0x503,
|
||||||
|
UMSG_UNKNOWN_1284 = 0x504,
|
||||||
|
UMSG_UNKNOWN_1285 = 0x505,
|
||||||
|
NUM_MSG_TYPES = 0x506
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Player state
|
/// Player state
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
#ifndef _UPDATEFIELDS_AUTO_H
|
#ifndef _UPDATEFIELDS_AUTO_H
|
||||||
#define _UPDATEFIELDS_AUTO_H
|
#define _UPDATEFIELDS_AUTO_H
|
||||||
|
|
||||||
// Auto generated for version 0, 3, 0, 10712
|
// Auto generated for version 0, 3, 0, 10747
|
||||||
|
|
||||||
enum EObjectFields
|
enum EObjectFields
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -66,9 +66,9 @@ enum LoginResult
|
||||||
|
|
||||||
// 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.0 client build 10712...
|
// will only support WoW, WoW:TBC and WoW:WotLK 3.3.0 client build 10747...
|
||||||
|
|
||||||
#define EXPECTED_MANGOS_CLIENT_BUILD {10712, 0}
|
#define EXPECTED_MANGOS_CLIENT_BUILD {10747, 0}
|
||||||
|
|
||||||
// At update excepted builds please update if need define DEFAULT_MAX_LEVEL
|
// At update excepted builds please update if need define DEFAULT_MAX_LEVEL
|
||||||
// in DBCEnum.h to default max player level expected by build
|
// in DBCEnum.h to default max player level expected by build
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue