diff options
author | Spp <none@none> | 2010-04-19 16:44:35 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-19 16:44:35 +0200 |
commit | 41817b259be2ec91724e873bc5fa8d7fb5a15727 (patch) | |
tree | a1d4659e6f39b6353d896ab835cb7991aa7f9aa1 | |
parent | d2bd9dc1f56066c55fb0c7b36ca8cdb06ff5d055 (diff) |
Grizzly Hills: Fix phase error
--HG--
branch : trunk
-rw-r--r-- | src/scripts/northrend/grizzly_hills.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/northrend/grizzly_hills.cpp b/src/scripts/northrend/grizzly_hills.cpp index 0fb7372f250..9795afd82e8 100644 --- a/src/scripts/northrend/grizzly_hills.cpp +++ b/src/scripts/northrend/grizzly_hills.cpp @@ -439,7 +439,7 @@ struct npc_tallhorn_stagAI : public ScriptedAI void UpdateAI(const uint32 /*uiDiff*/) { - if (m_uiPhase = 1) + if (m_uiPhase == 1) { if (GameObject* haunch = me->FindNearestGameObject(OBJECT_HAUNCH, 2.0f)) { |