fix(Scripts/TheEye): allow Solarian to cast on pets/totems (#18539)

init
This commit is contained in:
Dan
2024-03-12 10:46:12 +01:00
committed by GitHub
parent a7026e7e39
commit 6b5289f373

View File

@@ -122,7 +122,7 @@ struct boss_high_astromancer_solarian : public BossAI
scheduler.Schedule(3650ms, [this](TaskContext context)
{
me->GetMotionMaster()->Clear();
if (Unit* target = SelectTarget(SelectTargetMethod::Random, 0, 40.0f, true, true, -SPELL_WRATH_OF_THE_ASTROMANCER))
if (Unit* target = SelectTarget(SelectTargetMethod::Random, 0, 40.0f, false, true, -SPELL_WRATH_OF_THE_ASTROMANCER))
{
DoCast(target, SPELL_ARCANE_MISSILES);
}