diff options
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 2801dbead33..cd5b79c95c3 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -316,9 +316,9 @@ bool Quest::IsRaidQuest(Difficulty difficulty) const case QUEST_INFO_RAID: return true; case QUEST_INFO_RAID_10: - return !(difficulty & RAID_DIFFICULTY_MASK_25MAN); + return difficulty == DIFFICULTY_10_N || difficulty == DIFFICULTY_10_HC; case QUEST_INFO_RAID_25: - return difficulty & RAID_DIFFICULTY_MASK_25MAN; + return difficulty == DIFFICULTY_25_N || difficulty == DIFFICULTY_25_HC; default: break; } |