diff options
author | Traesh <Traesh@users.noreply.github.com> | 2017-04-23 02:20:19 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2017-04-23 02:20:19 +0200 |
commit | fabc5710525cd6974fc95e350366e2129e53ffaf (patch) | |
tree | b405c644cc8a24303f2f1bf25c8cc4cce12d2bc2 | |
parent | f7b0f4c9c6c34ca43190e24229b4354d7a02f012 (diff) |
Fix typo in IsRaidQuest
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 6ff37422562..c77b8c8ad50 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -360,7 +360,7 @@ bool Quest::IsAutoComplete() const bool Quest::IsRaidQuest(Difficulty difficulty) const { - switch (Type) + switch (QuestInfoID) { case QUEST_INFO_RAID: return true; |