Skip to content

Commit

Permalink
Warrior: Bloodsurge proc will overwrite T10 4-set proc with less than…
Browse files Browse the repository at this point in the history
… 5s duration
  • Loading branch information
TheGroxEmpire committed Nov 3, 2023
1 parent 8a7d40b commit 6ec37ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sim/warrior/talents.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ func (warrior *Warrior) applyBloodsurge() {
ActionID: core.ActionID{SpellID: 46916},
Duration: time.Second * 5,
OnGain: func(aura *core.Aura, sim *core.Simulation) {
if warrior.Ymirjar4pcProcAura.IsActive() && warrior.Ymirjar4pcProcAura.Duration < time.Second*5 {
warrior.Ymirjar4pcProcAura.Deactivate(sim)
}
warrior.Slam.DefaultCast.CastTime = 0
},
OnExpire: func(aura *core.Aura, sim *core.Simulation) {
Expand Down

0 comments on commit 6ec37ec

Please sign in to comment.