diff options
author | Spp <none@none> | 2010-04-19 16:45:48 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-19 16:45:48 +0200 |
commit | 647dde0f7680140b9f055cd3e92d8c7406467dd8 (patch) | |
tree | dfcfae5c4e03de7b3fa9fb9c494567750f0379e2 /src | |
parent | 41817b259be2ec91724e873bc5fa8d7fb5a15727 (diff) |
Durotar: Fix Phase error
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts/kalimdor/durotar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/kalimdor/durotar.cpp b/src/scripts/kalimdor/durotar.cpp index 160d3c3f2ec..9ca6074cad3 100644 --- a/src/scripts/kalimdor/durotar.cpp +++ b/src/scripts/kalimdor/durotar.cpp @@ -43,7 +43,7 @@ struct npc_lazy_peonAI : public ScriptedAI uint64 uiPlayerGUID; uint32 m_uiRebuffTimer; - uint32 work; + bool work; void Reset () { @@ -72,7 +72,7 @@ struct npc_lazy_peonAI : public ScriptedAI void UpdateAI(const uint32 uiDiff) { - if (work = true) + if (work == true) me->HandleEmoteCommand(466); if (m_uiRebuffTimer <= uiDiff) { |