Skip to content

Commit

Permalink
Dragonflight/DawnOfTheInfinite/ManifestedTimeways: Unwind removed in …
Browse files Browse the repository at this point in the history
…10.2
  • Loading branch information
ntowle committed Oct 14, 2023
1 parent 42f1045 commit 6c93dd5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dragonflight/DawnOfTheInfinite/ManifestedTimeways.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 @@ -30,7 +31,11 @@ function mod:OnBossEnable()
end

function mod:OnEngage()
self:CDBar(414303, 5.8) -- Unwind
if not isTenDotTwo then
-- not cast in M+, removed from dungeon journal in all difficulties
-- TODO is this still cast in hardmode in 10.2? any way to detect hardmode?
self:CDBar(414303, 5.8) -- Unwind
end
self:CDBar(405431, 15.5) -- Fragments of Time
self:CDBar(405696, 30.1) -- Chrono-faded
end
Expand Down

0 comments on commit 6c93dd5

Please sign in to comment.