diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index fd1a4357b..4387d0ad7 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -575,7 +575,7 @@ void PlayerMenu::SendQuestQueryResponse( Quest const *pQuest ) data << uint32(pQuest->GetQuestId()); // quest id data << uint32(pQuest->GetQuestMethod()); // Accepted values: 0, 1 or 2. 0==IsAutoComplete() (skip objectives/details) data << int32(pQuest->GetQuestLevel()); // may be -1, static data, in other cases must be used dynamic level: Player::GetQuestLevelForPlayer (0 is not known, but assuming this is no longer valid for quest intended for client) - data << uint32(0); // min level + data << uint32(pQuest->GetMinLevel()); // min required level to obtain (added for 3.3). Assumed allowed (database) range is -1 to 255 (still using uint32, since negative value would not be of any known use for client) data << uint32(pQuest->GetZoneOrSort()); // zone or sort to display in quest log data << uint32(pQuest->GetType()); // quest type diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 7e0e9ff06..9528a0b05 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 "9262" + #define REVISION_NR "9263" #endif // __REVISION_NR_H__