--- G:/World of Warcraft/Interface/Addons/SexyCooldown/prototype.lua Fri Oct 16 18:43:18 2009 +++ F:/My Documents/WoW/Mods/SexyCooldown/prototype.lua Fri Oct 16 18:40:48 2009 @@ -861,14 +861,17 @@ local text if iRemaining ~= self.lastRemaining or iRemaining < 10 then parent:CheckOverlap(self) - if iRemaining >= 60 then + if iRemaining >= 600 then + local minutes = math_floor(iRemaining / 60) + text = string_format("%im", minutes) + elseif iRemaining >= 60 then local minutes = math_floor(iRemaining / 60) local seconds = math_fmod(iRemaining, 60) - text = string_format("%2.0f:%02.0f", minutes, seconds) + text = string_format("%i:%02i", minutes, seconds) elseif remaining <= 10 then - text = string_format("%2.1f", remaining) + text = string_format("%.1f", remaining) else - text = string_format("%2.0f", remaining) + text = string_format("%i", remaining) end if self.fs.lastText ~= text then self.fs:SetText(text)