Skip to content

Commit

Permalink
Arca: Make harbinger skyriss copies be aoe immune
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Jun 21, 2024
1 parent 85510bc commit 4ac2d20
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ struct boss_harbinger_skyrissAI : public CombatAI

void JustSummoned(Creature* summoned) override
{
switch (summoned->GetCreatedBySpellId())
{
case SPELL_66_ILLUSION:
case SPELL_33_ILLUSION:
summoned->SetAOEImmune(true);
break;
}
if (m_creature->GetVictim())
summoned->AI()->AttackStart(m_creature->GetVictim());
}
Expand Down

0 comments on commit 4ac2d20

Please sign in to comment.