b00e4e3 - Add new mythic boss abilities
[wowui.git] / kehys / updater.lua
index 68015bb..347096c 100644 (file)
@@ -23,6 +23,8 @@ local healcolor = addon.Colors.OverlayColorHeal;
 
 local ignoredAuras = {
     [315176] = true, -- Grasping Tendrils
+    [313759] = true, -- Cursed Blood (Il'gynoth)
+    [312486] = true, -- Recurring Nightmare (Il'gynoth)
 };
 
 local powerColors = {
@@ -140,6 +142,8 @@ function addon.FrameUpdate(frame)
                     frame.text:SetFormattedText("%.2fM", current / 1000000);
                 elseif current > 1000 then -- 1.0K
                     frame.text:SetFormattedText("%.1fK", current / 1000);
+                else
+                    frame.text:SetFormattedText("%i", current);
                 end
                 if not frame.text:IsShown() then frame.text:Show() end
             end
@@ -225,6 +229,7 @@ function addon.FrameUpdate(frame)
                 frame.stacks = {};
                 frame.heal = {};
                 frame.buff1 = {};
+                frame.buff2 = {};
                 addon.SetAuras(frame.unit, frame.guid);
                 frame.rounds = 0;
             end