diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-01-10 01:35:47 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-01-10 01:35:47 +0100 |
| commit | faa583c7843af37d757bd46ca0bd226175dabc38 (patch) | |
| tree | 5af657d84903b337bdb22c341bb01f4e6aab1392 /src/server/game/Quests/QuestDef.cpp | |
| parent | f6b30fdf616bd289dd668f98a0aed8dbfb14eba8 (diff) | |
Core/Maps: Updated map difficulties
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; } |
