From 7e58f2b60526f3391404729c330b59dfbbd2741b Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 24 Jun 2021 21:47:06 +0200 Subject: [PATCH] Don't set a cooldown to the cooldown frame after it's creation. --- data/cooldowns.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/cooldowns.lua b/data/cooldowns.lua index d143515..b975a45 100644 --- a/data/cooldowns.lua +++ b/data/cooldowns.lua @@ -252,7 +252,7 @@ function Rekt:CreateFrames(which) frame.texture = text; local CoolDown = CreateFrame("Cooldown", "RektCoolDown" .. i, frame); CoolDown:SetAllPoints() - CoolDown:SetCooldown(GetTime(), 50); + --CoolDown:SetCooldown(GetTime(), 50); frame:Hide(); local colorframe = CreateFrame("Frame", nil, UIParent, nil);