diff options
author | click <none@none> | 2010-05-04 08:41:02 +0200 |
---|---|---|
committer | click <none@none> | 2010-05-04 08:41:02 +0200 |
commit | 49b40ac6c8782db5d2858716426191ebd2bcab02 (patch) | |
tree | 7143e6a308eae52da75a1003f4341d017a6b8558 | |
parent | 0fd39511acda67f3f61a5a84ab3c34dd91855baa (diff) |
Fix quest 9868 (The Totem of Kar'dash) - thanks to Erocoloco
Closes issue 1086.
--HG--
branch : trunk
-rw-r--r-- | src/scripts/outland/nagrand.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/scripts/outland/nagrand.cpp b/src/scripts/outland/nagrand.cpp index 262ec87e4c4..700ba2cc120 100644 --- a/src/scripts/outland/nagrand.cpp +++ b/src/scripts/outland/nagrand.cpp @@ -620,9 +620,10 @@ struct npc_maghar_captiveAI : public npc_escortAI } } - void UpdateEscortAI(const uint32 uiDiff) + void UpdateAI(const uint32 uiDiff) { - if (/*!me->SelectHostilTarget() ||*/ !me->getVictim()) + npc_escortAI::UpdateAI(uiDiff); + if (!me->getVictim()) return; if (m_uiChainLightningTimer <= uiDiff) |