*fix event reset bug for quest The Light of Dawn, Fixes issue #108.

--HG--
branch : trunk
This commit is contained in:
Rat
2010-01-19 12:07:51 +01:00
parent 0cc053ea4d
commit 727fbbef07

View File

@@ -577,6 +577,12 @@ struct TRINITY_DLL_DECL npc_highlord_darion_mograineAI : public npc_escortAI
}
}
void EnterEvadeMode()
{
if(!bIsBattle)//do not reset self if we are in battle
npc_escortAI::EnterEvadeMode();
}
void UpdateAI(const uint32 diff)
{
npc_escortAI::UpdateAI(diff);