diff options
| author | Anubisss <none@none> | 2010-03-30 21:38:03 +0200 |
|---|---|---|
| committer | Anubisss <none@none> | 2010-03-30 21:38:03 +0200 |
| commit | 82686437fb3c9fff5ec456e9fefdbe782b0604ee (patch) | |
| tree | f614325152e082d7af5d1f313058c1b8697e9238 /src | |
| parent | ed40fed97133ac9aeaf6e8188a3b7f9be18a521b (diff) | |
Fix a typo in Keristrasza's script. Patch by havenard, #1373.
--HG--
branch : trunk
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); |
