Skip to content

Commit

Permalink
Merge pull request #4084 from bjth/thewarwithin
Browse files Browse the repository at this point in the history
Fix max stacks for IT, with the Dark Talons Hero Talent change
  • Loading branch information
Hekili authored Oct 26, 2024
2 parents b50de3f + 333313b commit a9e0c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TheWarWithin/DeathKnightFrost.lua
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ spec:RegisterAuras( {
icy_talons = {
id = 194879,
duration = 6,
max_stack = function() return talent.smothering_offense.enabled and 5 or 3 end,
max_stack = function() return ( talent.smothering_offense.enabled and 5 or 3 ) + ( talent.dark_talons.enabled and 2 or 0 ) end,
},
inexorable_assault = {
id = 253595,
Expand Down

0 comments on commit a9e0c3e

Please sign in to comment.