Skip to content

Commit

Permalink
Hodir: Respawn 30s after evade
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa committed Oct 6, 2024
1 parent b24363a commit 8adaeb2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ struct boss_hodirAI : public BossAI
}

if (m_creature->IsAlive() && !m_eventFinished)
m_creature->ForcedDespawn(30s);
{
m_creature->SetRespawnDelay(30s, true);
m_creature->ForcedDespawn();
}
}

void KilledUnit(Unit* victim) override
Expand Down

0 comments on commit 8adaeb2

Please sign in to comment.