Skip to content

Commit

Permalink
Merge pull request #1092 from hillerstorm/dk_fix_runic_corruption
Browse files Browse the repository at this point in the history
[Unholy] Fix Runic Corruption to extend duration if already active
  • Loading branch information
hillerstorm authored Oct 8, 2024
2 parents de6a07f + a0727a9 commit ef19439
Show file tree
Hide file tree
Showing 2 changed files with 835 additions and 831 deletions.
6 changes: 5 additions & 1 deletion sim/death_knight/talents_unholy.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ func (dk *DeathKnight) applyRunicEmpowerementCorruption() {
})

handler = func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) {
regenAura.Activate(sim)
if regenAura.IsActive() {
regenAura.UpdateExpires(regenAura.ExpiresAt() + time.Second*3)
} else {
regenAura.Activate(sim)
}
}
} else {
// Runic Empowerement refreshes random runes on cd
Expand Down
Loading

0 comments on commit ef19439

Please sign in to comment.