Skip to content

Commit

Permalink
Add stance restriction on Rend
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGroxEmpire committed Aug 17, 2023
1 parent 2763fe6 commit e793670
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sim/warrior/rend.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ func (warrior *Warrior) RegisterRendSpell(rageThreshold float64, healthThreshold
IgnoreHaste: true,
},

ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool {
return warrior.StanceMatches(BattleStance)
},

DamageMultiplier: 1 + 0.1*float64(warrior.Talents.ImprovedRend),
ThreatMultiplier: 1,

Expand Down

0 comments on commit e793670

Please sign in to comment.