The spell Vengeful Spirit summon a revenant that don't attack player even if they are in guild.

Lady Melisande summon a useless Revenant that stand still and if Melisande cast a Wither, the Revenant attack her.

Melisande runs if she's attack by evocations (like energy vortex) and the spell Animate Dead had the same "bug" of the standing revenant.

Any ideas?
 
Fix :

- In BaseCreature find "CanBeHarmful" Method and Add this Code

if (this is Revenant && target is PlayerMobile)
return true;

if (target is Revenant && (m_SummonMaster is PlayerMobile))
return true;


- In PlayerMobile find "CanBeHarmful" Method and Add this Code

if (target is Revenant)
return true;

Your Bug was Fixed with this simple Add of Code.
 
Back