From ef9a9ba972a46211c20899b5aa6c8c03a8879173 Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Wed, 30 Sep 2009 19:42:55 +0400 Subject: [PATCH] [8572] Add active repeatable non-daily quest in quest book at character loading also. This fix bug with have like quest started and impossibility see and abort it. --- src/game/Player.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 342e24c3c..2436278ad 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -15122,7 +15122,7 @@ void Player::_LoadQuestStatus(QueryResult *result) ((questStatusData.m_status == QUEST_STATUS_INCOMPLETE || questStatusData.m_status == QUEST_STATUS_COMPLETE || questStatusData.m_status == QUEST_STATUS_FAILED) && - (!questStatusData.m_rewarded || pQuest->IsDaily()))) + (!questStatusData.m_rewarded || pQuest->IsRepeatable()))) { SetQuestSlot(slot, quest_id, quest_time); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 830a1a1fb..ed11e9bad 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 "8571" + #define REVISION_NR "8572" #endif // __REVISION_NR_H__ -- 2.11.4.GIT