From 2820c7ba119e50d5ce0095d112ff38f9d22cc277 Mon Sep 17 00:00:00 2001 From: Anubisss Date: Thu, 22 Oct 2009 15:51:31 +0200 Subject: *Fix the bug that cant accept timed quests. Patch by Elron. --HG-- branch : trunk --- src/game/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/Player.cpp') diff --git a/src/game/Player.cpp b/src/game/Player.cpp index ccbaf8f5b53..607a1a7626a 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -13662,7 +13662,7 @@ bool Player::SatisfyQuestStatus( Quest const* qInfo, bool msg ) bool Player::SatisfyQuestTimed(Quest const* qInfo, bool msg) { - if (m_timedquests.empty() && qInfo->HasFlag(QUEST_TRINITY_FLAGS_TIMED)) + if (!m_timedquests.empty() && qInfo->HasFlag(QUEST_TRINITY_FLAGS_TIMED)) { if (msg) SendCanTakeQuestResponse(INVALIDREASON_QUEST_ONLY_ONE_TIMED); -- cgit v1.2.3