My Witchdoctor has the skill infinite time Fetish Army. So there is no need to constantly use this skill. I made changes in WitchDoctorBase.cs to avoid constant cast skill Fetish Army.
I think it is not best solution. Tell me how to make more correctly?
Code:
protected virtual bool ShouldFetishArmy()
{
if (!Skills.WitchDoctor.FetishArmy.CanCast())
return false;
if (Skills.WitchDoctor.FetishArmy.IsBuffActive)
return false;
[B] [COLOR="#FF0000"]if (Player.Summons.FetishArmyCount == 6)
return false;[/COLOR][/B]
return true;
}
I think it is not best solution. Tell me how to make more correctly?