Skip to content

Commit

Permalink
Ranger buff stacking check
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Mar 26, 2024
1 parent ae0d185 commit a884751
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion class_configs/rng_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ local _ClassConfig = {
tooltip = Tooltips.GroupStrengthBuff,
active_cond = function(self, spell) return RGMercUtils.BuffActiveByID(spell.RankName.ID()) end,
cond = function(self, spell)
return RGMercUtils.SelfBuffCheck(spell) and not RGMercUtils.BuffActiveByName("Shared " .. spell.Name())
return RGMercUtils.SelfBuffCheck(spell) and not RGMercUtils.BuffActiveByName("Shared " .. spell.Name()) and RGMercUtils.SpellStacksOnMe(spell)
end,
},
{
Expand Down
2 changes: 1 addition & 1 deletion extras/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = 'c9496aa 2024-03-22' }
return { commitId = 'ae0d185 2024-03-22' }

0 comments on commit a884751

Please sign in to comment.