summaryrefslogtreecommitdiff
path: root/src/server/game/DungeonFinding/LFGMgr.cpp
diff options
context:
space:
mode:
authorUltraNix <80540499+UltraNix@users.noreply.github.com>2021-10-14 13:22:37 +0200
committerGitHub <noreply@github.com>2021-10-14 13:22:37 +0200
commitb8345a2f98bdc4413bd2bb5519e38047de991b1d (patch)
tree3472a3dbbfad44cc5c1444dba50598377b332e5c /src/server/game/DungeonFinding/LFGMgr.cpp
parent01d3747efd6105cee118083189f6f9912d92cf00 (diff)
fix(Core/DungeonFinder): Seasonal bosses are available only via Dunge… (#8056)
* fix(Core/DungeonFinder): Seasonal bosses are available only via Dungeon Finder tool. Fixes #7889 * Update. * Buildfix. * Missing.
Diffstat (limited to 'src/server/game/DungeonFinding/LFGMgr.cpp')
-rw-r--r--src/server/game/DungeonFinding/LFGMgr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp
index cd69293265..277e7a879f 100644
--- a/src/server/game/DungeonFinding/LFGMgr.cpp
+++ b/src/server/game/DungeonFinding/LFGMgr.cpp
@@ -2655,13 +2655,13 @@ namespace lfg
{
switch (dungeonId)
{
- case 285: // The Headless Horseman
+ case LFG_DUNGEON_HEADLESS_HORSEMAN:
return IsHolidayActive(HOLIDAY_HALLOWS_END);
- case 286: // The Frost Lord Ahune
+ case LFG_DUNGEON_FROST_LORD_AHUNE:
return IsHolidayActive(HOLIDAY_FIRE_FESTIVAL);
- case 287: // Coren Direbrew
+ case LFG_DUNGEON_COREN_DIREBREW:
return IsHolidayActive(HOLIDAY_BREWFEST);
- case 288: // The Crown Chemical Co.
+ case LFG_DUNGEON_CROWN_CHEMICAL_CO:
return IsHolidayActive(HOLIDAY_LOVE_IS_IN_THE_AIR);
}
return false;