Skip to content

Commit

Permalink
Merge pull request #1939 from wowsims/fixes
Browse files Browse the repository at this point in the history
Fix panic when spriest doesn't talent into vampiric touch
  • Loading branch information
jimmyt857 authored Nov 26, 2022
2 parents 9d7ed4f + 176e62e commit 3608eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/priest/mind_blast.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (priest *Priest) registerMindBlastSpell() {
}
spell.DealDamage(sim, result)

if priest.VampiricTouchDot != nil && priest.VampiricTouchDot.IsActive() {
if priest.Talents.VampiricTouch && priest.VampiricTouchDot.IsActive() {
priest.Env.Raid.ProcReplenishment(sim, replSrc)
}
},
Expand Down

0 comments on commit 3608eeb

Please sign in to comment.