diff --git a/src/strategy/raids/ulduar/RaidUlduarTriggers.cpp b/src/strategy/raids/ulduar/RaidUlduarTriggers.cpp index c7cd6443..bc2f949a 100644 --- a/src/strategy/raids/ulduar/RaidUlduarTriggers.cpp +++ b/src/strategy/raids/ulduar/RaidUlduarTriggers.cpp @@ -286,6 +286,9 @@ bool IronAssemblyRuneOfPowerTrigger::IsActive() if (!target->HasAura(SPELL_RUNE_OF_POWER)) return false; + if (target->GetVictim() != bot) + return false; + return botAI->IsTank(bot); }