Skip to content

Commit 31b218e

Browse files
committed
only invert runes on mythic
1 parent ec082c7 commit 31b218e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

EncounterAlerts/MidnightS1/MidnightFalls.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,12 +252,12 @@ NSI.EncounterAlertStart[encID] = function(self, id) -- on ENCOUNTER_START
252252
self.LuraRunesFrame:Hide()
253253

254254
self.AlertTimers[1] = C_Timer.NewTimer(60, function()
255-
self.LuraRunesInverted = true
255+
if id == 16 then self.LuraRunesInverted = true end
256256
self.AlertTimers[1] = nil
257257
self.LuraRunesCompleted = {}
258258
end)
259259
self.AlertTimers[2] = C_Timer.NewTimer(120, function()
260-
self.LuraRunesInverted = false
260+
if id == 16 then self.LuraRunesInverted = true end
261261
self.AlertTimers[2] = nil
262262
self.LuraRunesCompleted = {}
263263
end)

0 commit comments

Comments
 (0)