diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts/northrend/nexus/nexus/boss_keristrasza.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/northrend/nexus/nexus/boss_keristrasza.cpp b/src/scripts/northrend/nexus/nexus/boss_keristrasza.cpp index 76faf74856e..bb020c911b2 100644 --- a/src/scripts/northrend/nexus/nexus/boss_keristrasza.cpp +++ b/src/scripts/northrend/nexus/nexus/boss_keristrasza.cpp @@ -177,7 +177,7 @@ struct boss_keristraszaAI : public ScriptedAI uiCheckIntenseColdTimer = 2*IN_MILISECONDS; } else uiCheckIntenseColdTimer -= diff; - if (!bEnrage && (m_creature->GetHealth() < HealthBelowPct(25))) + if (!bEnrage && HealthBelowPct(25)) { DoScriptText(SAY_ENRAGE, m_creature); DoCast(m_creature, SPELL_ENRAGE); |