- Fixed Iron Assembly Rune of Power trigger (#1314)

This commit is contained in:
kadeshar
2025-05-18 19:32:31 +02:00
committed by GitHub
parent f7bd9ae5c1
commit e1a8bd66c5

View File

@@ -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);
}