Sometimes best solution is self help
question why doesnt my warrior use impending victory kinda makes is hard for it to run in a long row
This is a coding error or over site in the singular warrior cc it is an easy fix. Simply open up your Routines/Singular/Classpecific/Warrior/ Your spec of course open it with note pad scroll almost to the bottom you will find 2 sets of spell lines similar to this
(8f).Count() >= 4,
new PrioritySelector(
Spell.Cast("Thunder Clap"),
Spell.Cast("Cleave"),
Spell.Cast("Shield Slam"),
Spell.Cast("Revenge"),
Spell.Cast("Devastate"),
Spell.Cast("Victory Rush"),
Movement.CreateMoveToMeleeBehavior(true)
)),
//Single target
Spell.Cast("Shield Slam"),
Spell.Cast("Victory Rush"),
Spell.Cast("Revenge"),
Spell.Cast("Devastate"),
Spell.Cast("Thunder Clap", ret => !
As you can see in the one I posted this is the one I edited for protection to use victory rush but just as easy to use the spell you want by typing it in as I did victory rush then hitting save reload buddy and problem should be solved.