Skip to content

Commit 862e3a2

Browse files
committed
For Spells that give a buff on both player and pets, prefer player
1 parent 3d25fdb commit 862e3a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ function export()
702702
if specDB.playerBuffs[spellId] then
703703
parameters = parameters .. ", buff = true"
704704
end
705-
if specDB.petBuffs[spellId] then
705+
if specDB.petBuffs[spellId] and not specDB.playerBuffs[spellId] then
706706
parameters = parameters .. ", buff = true, unit = 'pet'"
707707
end
708708
if specDB.targetDebuffs[spellId] then

0 commit comments

Comments
 (0)