Skip to content

Commit

Permalink
Druid spamming strength line fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Mar 30, 2024
1 parent 4eb180a commit 6918422
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions class_configs/dru_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1207,11 +1207,11 @@ local _ClassConfig = {
{
name = "AtkBuff",
type = "Spell",
active_cond = function(self, spell) return true end,
cond = function(self, spell, target)
return not RGMercUtils.TargetHasBuff(spell) and target and target and
Set.new({ "BRD", "SHD", "PAL", "WAR", "ROG", "BER", "MNK", "RNG", }):contains(target.Class
.ShortName())
active_cond = function(self, spell) return RGMercUtils.BuffActiveByID(spell.ID()) end,
cond = function(self, spell, target, uiCheck)
if not uiCheck then RGMercUtils.SetTarget(target.ID() or 0) end
return not RGMercUtils.TargetHasBuff(spell) and RGMercUtils.SpellStacksOnTarget(spell) and
Set.new({ "BRD", "SHD", "PAL", "WAR", "ROG", "BER", "MNK", "RNG", }):contains((target.Class.ShortName() or ""))
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 = '1521406 2024-03-29' }
return { commitId = '4eb180a 2024-03-29' }

0 comments on commit 6918422

Please sign in to comment.