From e3420ed51373296e2ce8a3bac27b3a52ab1bd7ee Mon Sep 17 00:00:00 2001 From: lee1991 Date: Thu, 2 Feb 2017 21:26:06 +0000 Subject: [PATCH] Anub'Rekhan will now summon two creatures in Naxxramas 25m, it will no longer spawn a Crypt guard in 10 man. closes #215 --- src/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp b/src/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp index 82a24a4c5..f7dca5d79 100644 --- a/src/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp +++ b/src/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp @@ -64,9 +64,11 @@ public: void SummonCryptGuards() { - me->SummonCreature(NPC_CRYPT_GUARD, 3308.590f, -3466.29f, 287.16f, M_PI, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 60000); - if (IsHeroic()) + if (Is25ManRaid()) + { me->SummonCreature(NPC_CRYPT_GUARD, 3308.590f, -3486.29f, 287.16f, M_PI, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 60000); + me->SummonCreature(NPC_CRYPT_GUARD, 3308.590f, -3466.29f, 287.16f, M_PI, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 60000); + } } void Reset()