Skip to content

Commit

Permalink
Move spell cast to reset to account for Creature Evade
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Aug 4, 2017
1 parent f947b03 commit 95ca232
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ struct boss_warchief_kargath_bladefistAI : public ScriptedAI
{
m_pInstance = (ScriptedInstance*)pCreature->GetInstanceData();
m_bIsRegularMode = pCreature->GetMap()->IsRegularDifficulty();
m_creature->CastSpell(m_creature, SPELL_DOUBLE_ATTACK, TRIGGERED_NONE);
Reset();
}

Expand Down Expand Up @@ -94,6 +93,8 @@ struct boss_warchief_kargath_bladefistAI : public ScriptedAI
m_uiBladeDanceTimer = 45000;
m_uiSummonAssistantTimer = 30000;
m_uiAssassinsTimer = 5000;

m_creature->CastSpell(m_creature, SPELL_DOUBLE_ATTACK, TRIGGERED_NONE);
}

void Aggro(Unit* /*pWho*/) override
Expand Down

0 comments on commit 95ca232

Please sign in to comment.