I was tinkering with a code so Fetish Army summons like Zombie Dogs instead of just on Elite packs.
This is what I have but from what I can gather its not recognizing the Zuni set bonus is active ?
Code:
//Zunimassa Fetish Army
bool hasZuni = Sets.ZunimassasHaunt.IsThirdBonusActive;
if (!hasZuni)
{
// Fetish Army, elites only
if (CanCast(SNOPower.Witchdoctor_FetishArmy) && (TargetUtil.EliteOrTrashInRange(30f) || TargetUtil.IsEliteTargetInRange(30f) || Settings.Combat.WitchDoctor.UseFetishArmyOffCooldown))
{
return new TrinityPower(SNOPower.Witchdoctor_FetishArmy);
}
}
else
{
if (UseOOCBuff && CanCast(SNOPower.Witchdoctor_FetishArmy))
{
return new TrinityPower(SNOPower.Witchdoctor_FetishArmy);
}
}
Last edited: