Skip to content

Commit

Permalink
Fix secret_techniques error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Jan 31, 2024
1 parent d14efb3 commit 477c599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dragonflight/RogueSubtlety.lua
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ spec:RegisterAbilities( {

cp_gain = function ()
if buff.shadow_blades.up then return 7 end
return 1 + ( buff.broadside.up and 1 or 0 ) + buff.secret_techniques.stack
return 1 + ( buff.broadside.up and 1 or 0 )
end,

handler = function ()
Expand Down

2 comments on commit 477c599

@IIeTpoc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not it be
return 1 + ( buff.broadside.up and 1 or 0 ) + buff.shadow_techniques.stack

Because it actually proc stored shadow technique combo points?

@Hekili
Copy link
Owner Author

@Hekili Hekili commented on 477c599 Jan 31, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No.

Please sign in to comment.