diff options
author | megamage <none@none> | 2009-01-30 19:22:49 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-30 19:22:49 -0600 |
commit | 1707d1e5aec42d521eb986520a93a008e1c1fce0 (patch) | |
tree | 532acf4fb8896eac30ec281c7f51b006d465227c /src/game/GossipDef.cpp | |
parent | 0c40d01c7f92e5255c3a9592735041bcb21717c1 (diff) |
*Switch to 3.0.8.
*Update to Mangos 1119.
--HG--
branch : trunk
Diffstat (limited to 'src/game/GossipDef.cpp')
-rw-r--r-- | src/game/GossipDef.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index 7feeb195607..8b6c8209233 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -595,11 +595,18 @@ void PlayerMenu::SendQuestQueryResponse( Quest const *pQuest ) data << uint32(pQuest->ReqCreatureOrGOId[iI]); } data << uint32(pQuest->ReqCreatureOrGOCount[iI]); + data << uint32(0); // added in WotLK, dunno if offset if correct + } + + for (iI = 0; iI < QUEST_OBJECTIVES_COUNT; ++iI) + { data << uint32(pQuest->ReqItemId[iI]); data << uint32(pQuest->ReqItemCount[iI]); - data << uint32(0); // added in WotLK, dunno if offset if correct } + data << uint32(0); // TODO: 5 item objective + data << uint32(0); + for (iI = 0; iI < QUEST_OBJECTIVES_COUNT; iI++) data << ObjectiveText[iI]; |