diff --git a/Dragonflight/DawnOfTheInfinite/ManifestedTimeways.lua b/Dragonflight/DawnOfTheInfinite/ManifestedTimeways.lua index fb25d4431..3dd216d97 100644 --- a/Dragonflight/DawnOfTheInfinite/ManifestedTimeways.lua +++ b/Dragonflight/DawnOfTheInfinite/ManifestedTimeways.lua @@ -1,3 +1,4 @@ +local isTenDotTwo = select(4, GetBuildInfo()) >= 100200 --- XXX delete when 10.2 is live everywhere -------------------------------------------------------------------------------- -- Module Declaration -- @@ -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