diff options
author | megamage <none@none> | 2008-12-01 10:45:45 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-12-01 10:45:45 -0600 |
commit | 65db262e9535652af1b0877995f4e4f7d538c04f (patch) | |
tree | dd9960f4508bd71dd753d496fffdc956a1f1a3b3 | |
parent | 52e3010b4906751375b726180f83f36f660490ad (diff) |
*Do not allow chain aggro (since it is not official-like).
--HG--
branch : trunk
-rw-r--r-- | src/game/Creature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index e23059de8fa..82d0699707b 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -129,7 +129,7 @@ bool AssistDelayEvent::Execute(uint64 /*e_time*/, uint32 /*p_time*/) if (assistant && assistant->CanAssistTo(&m_owner, victim)) { - //assistant->SetNoCallAssistence(true); + assistant->SetNoCallAssistence(true); assistant->CombatStart(victim); if(assistant->AI()) assistant->AI()->AttackStart(victim); |