From 0e91f4fd60eafa709a9bf88e3d36f7908fd641dc Mon Sep 17 00:00:00 2001 From: Jason Greer Date: Tue, 9 Nov 2010 15:27:32 -0800 Subject: [PATCH] Added a noCC check --- cc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc.lua b/cc.lua index cc42b70..498784c 100644 --- a/cc.lua +++ b/cc.lua @@ -149,7 +149,7 @@ end --and I'd rather not create my own cooldown frame to preserve a tiny bit of memory hooksecurefunc(getmetatable(ActionButton1Cooldown).__index, 'SetCooldown', function(cd, start, duration) --start timer - if start > 0 and duration > MIN_DURATION then + if start > 0 and duration > MIN_DURATION and (not self.noCooldownCount) then local timer = cd.timer or Timer_Create(cd) timer.start = start timer.duration = duration -- 1.7.9.5