From 113ac069295f3de20ccbb5132f1e9b9448ae7341 Mon Sep 17 00:00:00 2001 From: Kartselyanski Date: Sun, 24 Jun 2018 03:37:51 +0300 Subject: [PATCH] Ahn'Kahet: Amanitar should cast the fungus only on players without "Mini" aura. --- .../scripts/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp b/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp index c8d89e5a6..db631b5d9 100644 --- a/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_amanitar.cpp @@ -196,8 +196,8 @@ public: if (!killer) return; - if (me->GetEntry() == NPC_HEALTHY_MUSHROOM) - me->CastSpell(me, SPELL_HEALTHY_MUSHROOM_POTENT_FUNGUS, true); + if (me->GetEntry() == NPC_HEALTHY_MUSHROOM && !killer->HasAura(SPELL_MINI)) + DoCast(killer, SPELL_HEALTHY_MUSHROOM_POTENT_FUNGUS); } void EnterCombat(Unit* /*who*/) {}