Skip to content

Commit

Permalink
MawOfSouls: Check for normal mode before starting some initial timers
Browse files Browse the repository at this point in the history
  • Loading branch information
nebularg committed Sep 20, 2016
1 parent 67d2a23 commit f0cfc17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Legion/MawOfSouls/Harbaron.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ end
function mod:OnEngage()
self:Bar(194216, 3.6) -- Cosmic Scythe
self:CDBar(194231, 8) -- Summon Shackled Servitor
self:CDBar(194668, 12.5) -- Nether Rip
if not self:Normal() then
self:CDBar(194668, 12.5) -- Nether Rip
end
self:CDBar(198551, 18) -- Fragment
end

Expand Down
4 changes: 3 additions & 1 deletion Legion/MawOfSouls/Helya.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ function mod:OnEngage()
tentacleDeaths = 0

self:CDBar("destructor_tentacle", 26, L.destructor_tentacle, L.destructor_tentacle_icon)
self:CDBar(202088, 40.5) -- Brackwater Barrage
if not self:Normal() then
self:CDBar(202088, 40.5) -- Brackwater Barrage
end

-- check on IEEU for changes since IEEU fires before tentacle death events, so they don't have a boss token anymore :\
wipe(seen)
Expand Down
4 changes: 3 additions & 1 deletion Legion/MawOfSouls/Ymiron.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ function mod:OnEngage()
self:CDBar(193364, 5.9) -- Screams of the Dead
self:CDBar(193977, 15.1) -- Winds of Northrend
self:CDBar(193460, 22.1) -- Bane
self:CDBar(193566, 41.2) -- Arise, Fallen
if not self:Normal() then
self:CDBar(193566, 41.2) -- Arise, Fallen
end
end

--------------------------------------------------------------------------------
Expand Down

0 comments on commit f0cfc17

Please sign in to comment.