fix(Scripts/TempleOfAhnQiraj): Sand Blast threat-wipe mechanic (#13577)

init

Co-authored-by: Si1ker <Si1ker@users.noreply.github.com>
This commit is contained in:
Eddy Vega
2022-10-28 11:35:26 -06:00
committed by GitHub
parent b4a21ff445
commit c06f296a5f

View File

@@ -190,7 +190,9 @@ struct boss_ouro : public BossAI
void SpellHitTarget(Unit* target, SpellInfo const* spellInfo) override
{
if (spellInfo->Id == SPELL_SAND_BLAST && target)
me->GetThreatMgr().ModifyThreatByPercent(target, 100);
{
me->GetThreatMgr().ModifyThreatByPercent(target, -100);
}
}
void Emerge()