aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Quests/QuestDef.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-07-10 13:22:40 -0500
committerSubv <subv2112@gmail.com>2014-07-10 13:22:40 -0500
commitb44f38ab5dfd1800c63fa0f2e08243853ac35b69 (patch)
tree0f76303a79e2143d6a7c396dcfcabd7251a6f5ce /src/server/game/Quests/QuestDef.cpp
parent664e0a4523316a9b34961b87dfb66f9f7372f740 (diff)
Revert "Core/Quests: Changed QUEST_FLAGS_AUTO_ACCEPT to reflect what it actually does in 4.3.4."
This reverts commit 9c339d9eeb09e1ca4600728294c77fc3d36f22e3.
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rw-r--r--src/server/game/Quests/QuestDef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp
index 14825b9150c..5f811714f3a 100644
--- a/src/server/game/Quests/QuestDef.cpp
+++ b/src/server/game/Quests/QuestDef.cpp
@@ -321,7 +321,7 @@ uint32 Quest::GetRewMoneyMaxLevel() const
bool Quest::IsAutoAccept() const
{
- return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_ACCEPT) ? false : (SpecialFlags & QUEST_SPECIAL_FLAGS_AUTO_ACCEPT);
+ return sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_ACCEPT) ? false : (Flags & QUEST_FLAGS_AUTO_ACCEPT);
}
bool Quest::IsAutoComplete() const