fix(Scripts/TempleOfAhnQiraj): Correct post-teleport threat values for Twin Emperors (#13437)

This commit is contained in:
Gultask
2022-10-16 23:59:22 -03:00
committed by GitHub
parent 0c848d836f
commit 018a825e0c

View File

@@ -168,7 +168,7 @@ struct boss_twinemperorsAI : public BossAI
me->SetControlled(false, UNIT_STATE_ROOT);
if (Unit* victim = me->SelectNearestTarget())
{
me->AddThreat(victim, 200000.f);
me->AddThreat(victim, 2000.f);
AttackStart(victim);
}
});