From d3a10c4781c35cbb4d2f1b73d39d180de70f6f16 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 27 Jun 2021 10:46:41 +0200 Subject: [PATCH] Don't set a texture to the cooldown frames on creation. --- data/cooldowns.lua | 2 +- data/drs.lua | 2 +- data/interruptbar.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/cooldowns.lua b/data/cooldowns.lua index b975a45..dd467eb 100644 --- a/data/cooldowns.lua +++ b/data/cooldowns.lua @@ -247,7 +247,7 @@ function Rekt:CreateFrames(which) frame:SetScript("OnUpdate", function() self:VOnTimerUpdate(which) end) end local text = frame:CreateTexture(); - text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") + --text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") text:SetAllPoints(frame); frame.texture = text; local CoolDown = CreateFrame("Cooldown", "RektCoolDown" .. i, frame); diff --git a/data/drs.lua b/data/drs.lua index ab20e69..08d12e0 100644 --- a/data/drs.lua +++ b/data/drs.lua @@ -330,7 +330,7 @@ function Rekt:CreateDRFrames(which) frame:SetScript("OnUpdate", function() self:VOnDRTimerUpdate(wh) end) end local text = frame:CreateTexture(); - text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") + --text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") text:SetAllPoints(frame); frame.texture = text; local CoolDown = CreateFrame("Cooldown", "RektCoolDown" .. i, frame); diff --git a/data/interruptbar.lua b/data/interruptbar.lua index 2bb5fc4..97673ea 100644 --- a/data/interruptbar.lua +++ b/data/interruptbar.lua @@ -38,7 +38,7 @@ function Rekt:CreateInterruptBarFrames() frame:SetScript("OnUpdate", function() self:OnInterruptBarUpdate() end) end local text = frame:CreateTexture(); - text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") + --text:SetTexture("Interface\\Icons\\Spell_Arcane_Blink") text:SetAllPoints(frame); frame.texture = text; local CoolDown = CreateFrame("Cooldown", "RektIBCoolDown" .. i, frame);