View Single Post
  #8  
Old 08-14-2007, 06:00 PM
inkubus
Hill Giant
 
Join Date: Feb 2002
Posts: 146
Default

Ok found the problem, looks like hate of 0 is needed so drop the change to aggro.cpp and instead add this to spells.cpp ~ 2292:

Replace:

if(spelltar->IsAIControlled())
{
spelltar->AddToHateList(this, 1);
}

With:
if(spelltar->IsAIControlled())
{
if (!IsHarmonySpell(spell_id))
{
spelltar->AddToHateList(this, 1);
}
}
Reply With Quote