Skip to content

Commit

Permalink
Dragonflight/DawnOfTheInfinite/BlightOfGalakrond: Remove pre-10.2 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ntowle committed Nov 8, 2023
1 parent 50ea9ef commit 51cc291
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dragonflight/DawnOfTheInfinite/BlightOfGalakrond.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
local isTenDotTwo = select(4, GetBuildInfo()) >= 100200 --- XXX delete when 10.2 is live everywhere
--------------------------------------------------------------------------------
-- Module Declaration
--
Expand Down Expand Up @@ -161,12 +160,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, isTenDotTwo and 15 or 12, args.destName) -- XXX remove isTenDotTwo
self:TargetBar(args.spellId, 15, args.destName)
end
if self:Me(args.destGUID) then
self:Say(args.spellId)
if self:Mythic() then
self:YellCountdown(args.spellId, isTenDotTwo and 15 or 12, nil, 5) -- XXX remove isTenDotTwo
self:YellCountdown(args.spellId, 15, nil, 5)
end
end
end
Expand Down

0 comments on commit 51cc291

Please sign in to comment.