mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Fix quest 9868 (The Totem of Kar'dash) - thanks to Erocoloco
Closes issue 1086. --HG-- branch : trunk
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user