From e1a8bd66c530cb1f975f7b86f774e0532d2a24e6 Mon Sep 17 00:00:00 2001 From: kadeshar Date: Sun, 18 May 2025 19:32:31 +0200 Subject: [PATCH] - Fixed Iron Assembly Rune of Power trigger (#1314) --- src/strategy/raids/ulduar/RaidUlduarTriggers.cpp | 3 +++ 1 file changed, 3 insertions(+) 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); }