Skip to content

Commit

Permalink
Merge pull request #3067 from scizzydo/dragonflight
Browse files Browse the repository at this point in the history
Fix spend cost devouring plague
  • Loading branch information
Hekili authored Dec 14, 2023
2 parents 902a7bf + 2818fb1 commit 2d09710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dragonflight/PriestShadow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ spec:RegisterAbilities( {

spend = function ()
if buff.mind_devourer.up then return 0 end
return 50 + ( talent.distorted_reality.enabled and 10 or 0 ) + ( talent.minds_eye.enabled and -5 or 0 )
return 50 + ( talent.distorted_reality.enabled and 5 or 0 ) + ( talent.minds_eye.enabled and -5 or 0 )
end,
spendType = "insanity",

Expand Down

0 comments on commit 2d09710

Please sign in to comment.