Skip to content

Commit

Permalink
update icon method
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed May 16, 2022
1 parent 995a6af commit 6638b74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DBM-EternalPalace/LadyPriscillaAshvane.lua
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function mod:SPELL_AURA_APPLIED(args)
end
--star(1) and triangle(4)
if self.Options.SetIconOnArcingAzerite then
self:SetSortedIcon(1, args.destName, {1, 4}, 2, nil, nil, 1)--TODO, return function announce maybe?
self:SetSortedIcon("roster", 1, args.destName, {1, 4}, 2, nil, nil, 1)--TODO, return function announce maybe?
end
elseif (spellId == 296942 or spellId == 296939) then--Red (orange BW)
if args:IsPlayer() then
Expand All @@ -266,7 +266,7 @@ function mod:SPELL_AURA_APPLIED(args)
end
--circle(2) and cross(7)
if self.Options.SetIconOnArcingAzerite then
self:SetSortedIcon(1, args.destName, {2, 7}, 2, nil, nil, 2)--TODO, return function announce maybe?
self:SetSortedIcon("roster", 1, args.destName, {2, 7}, 2, nil, nil, 2)--TODO, return function announce maybe?
end
elseif (spellId == 296943 or spellId == 296940) then--Blue (Purple BW)
if args:IsPlayer() then
Expand All @@ -282,7 +282,7 @@ function mod:SPELL_AURA_APPLIED(args)
end
--diamond(3) and moon(6)
if self.Options.SetIconOnArcingAzerite then
self:SetSortedIcon(1, args.destName, {3, 6}, 2, nil, nil, 3)--TODO, return function announce maybe?
self:SetSortedIcon("roster", 1, args.destName, {3, 6}, 2, nil, nil, 3)--TODO, return function announce maybe?
end
end
if self.Options.InfoFrame then
Expand Down

0 comments on commit 6638b74

Please sign in to comment.