- 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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -286,6 +286,9 @@ bool IronAssemblyRuneOfPowerTrigger::IsActive()
if (!target->HasAura(SPELL_RUNE_OF_POWER)) if (!target->HasAura(SPELL_RUNE_OF_POWER))
return false; return false;
if (target->GetVictim() != bot)
return false;
return botAI->IsTank(bot); return botAI->IsTank(bot);
} }