diff options
author | tartalo <none@none> | 2009-10-22 18:37:51 +0200 |
---|---|---|
committer | tartalo <none@none> | 2009-10-22 18:37:51 +0200 |
commit | 38edb97e2273a28c3a5e81c0a742b9822905b518 (patch) | |
tree | 6d5c4de02bbffabd21af87ca860d1e2ffe109fad | |
parent | b90f307f3e88e7b9cb456a6458cb8614e3765fab (diff) | |
parent | 2820c7ba119e50d5ce0095d112ff38f9d22cc277 (diff) |
merge
--HG--
branch : trunk
-rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |