Skip to content

Commit

Permalink
fix(Scripts/BlackTemple): Ensure Illidari council health is balanced …
Browse files Browse the repository at this point in the history
…across wipes. (#19809)

Init.
  • Loading branch information
heyitsbench committed Aug 31, 2024
1 parent fc735e3 commit 9a503d4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,10 @@ struct boss_illidari_council : public BossAI

void DoAction(int32 param) override
{
if (!me->isActiveObject() && param == ACTION_START_ENCOUNTER)
if (param == ACTION_START_ENCOUNTER)
{
me->setActive(true);
if (!me->isActiveObject())
me->setActive(true);

bool spoken = false;

Expand Down

0 comments on commit 9a503d4

Please sign in to comment.