From de353e3b728ec45bf377339e5263388e52335a81 Mon Sep 17 00:00:00 2001 From: BeniS Date: Fri, 1 Feb 2013 00:07:28 +1300 Subject: [PATCH] Should resolve #256 (please test, works for me) --- modules/game_cooldown/cooldown.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/game_cooldown/cooldown.lua b/modules/game_cooldown/cooldown.lua index 8aa67ec6..e0c12911 100644 --- a/modules/game_cooldown/cooldown.lua +++ b/modules/game_cooldown/cooldown.lua @@ -133,7 +133,7 @@ function onSpellCooldown(iconId, duration) progressRect:setTooltip(spellName) local updateFunc = function() - updateCooldown(progressRect, duration/20) + updateCooldown(progressRect, duration/19) end local finishFunc = function() removeCooldown(progressRect) @@ -155,7 +155,7 @@ function onSpellGroupCooldown(groupId, duration) if progressRect then removeEvent(progressRect.event) local updateFunc = function() - updateCooldown(progressRect, duration/20) + updateCooldown(progressRect, duration/19) end local finishFunc = function() turnOffCooldown(progressRect)