Skip to content

Commit

Permalink
Dragonflight/DawnOfTheInfinite/BlightOfGalakrond: Update Corrosion du…
Browse files Browse the repository at this point in the history
…ration for 10.2
  • Loading branch information
ntowle committed Oct 26, 2023
1 parent d0c7ce0 commit 8c32fd9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dragonflight/DawnOfTheInfinite/BlightOfGalakrond.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
local isTenDotTwo = select(4, GetBuildInfo()) >= 100200 --- XXX delete when 10.2 is live everywhere
--------------------------------------------------------------------------------
-- Module Declaration
--
Expand Down Expand Up @@ -160,12 +161,12 @@ function mod:CorrosionApplied(args)
self:PlaySound(args.spellId, "info", nil, args.destName)
self:SecondaryIcon(args.spellId, args.destName)
if self:Mythic() then
self:TargetBar(args.spellId, 12, args.destName)
self:TargetBar(args.spellId, isTenDotTwo and 15 or 12, args.destName) -- XXX remove isTenDotTwo
end
if self:Me(args.destGUID) then
self:Say(args.spellId)
if self:Mythic() then
self:YellCountdown(args.spellId, 12, nil, 5)
self:YellCountdown(args.spellId, isTenDotTwo and 15 or 12, nil, 5) -- XXX remove isTenDotTwo
end
end
end
Expand Down

0 comments on commit 8c32fd9

Please sign in to comment.