aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Entities/Player/Player.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Entities/Player/Player.cpp b/src/server/game/Entities/Player/Player.cpp
index 1742cda6d99..1116cdfcb98 100644
--- a/src/server/game/Entities/Player/Player.cpp
+++ b/src/server/game/Entities/Player/Player.cpp
@@ -27229,7 +27229,7 @@ Difficulty Player::CheckLoadedRaidDifficultyID(Difficulty difficulty)
if (!difficultyEntry)
return DIFFICULTY_NORMAL_RAID;
- if (difficultyEntry->InstanceType != MAP_INSTANCE)
+ if (difficultyEntry->InstanceType != MAP_RAID)
return DIFFICULTY_NORMAL_RAID;
if (!(difficultyEntry->Flags & DIFFICULTY_FLAG_CAN_SELECT) || (difficultyEntry->Flags & DIFFICULTY_FLAG_LEGACY))
@@ -27244,7 +27244,7 @@ Difficulty Player::CheckLoadedLegacyRaidDifficultyID(Difficulty difficulty)
if (!difficultyEntry)
return DIFFICULTY_10_N;
- if (difficultyEntry->InstanceType != MAP_INSTANCE)
+ if (difficultyEntry->InstanceType != MAP_RAID)
return DIFFICULTY_10_N;
if (!(difficultyEntry->Flags & DIFFICULTY_FLAG_CAN_SELECT) || !(difficultyEntry->Flags & DIFFICULTY_FLAG_LEGACY))