diff options
author | megamage <none@none> | 2009-02-20 15:19:14 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-20 15:19:14 -0600 |
commit | e78a83423772cd0b763068bd3b012c45fbd94e0c (patch) | |
tree | 660ef0e9193a7fed0be741f568372f5782837c54 | |
parent | 01bd4a8121b9ef95bdad313e9dc754eda04b65b1 (diff) |
[7308] Send source items (reagents for quest casts/crafting) to client. Author: NoFantasy
--HG--
branch : trunk
-rw-r--r-- | src/game/GossipDef.cpp | 2 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index 8f810d6355b..713dbc69b19 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -624,7 +624,7 @@ 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 + data << uint32(pQuest->ReqSourceId[iI]); } for (iI = 0; iI < QUEST_OBJECTIVES_COUNT; ++iI) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d70d1b4a5df..e96791f833d 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7307" + #define REVISION_NR "7308" #endif // __REVISION_NR_H__ |