WoWInterface SVN Bison1

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 39 to Rev 40
    Reverse comparison

Rev 39 → Rev 40

Bison.lua
403,6 → 403,9
negative = ''
time = seconds
end
if time < 60 then
return string.format( '|cffffffff%s%ds|r', negative, time)
end
local min = math.floor( time / 60)
if time < 600 then
return string.format( '|cffffffff%s%d:%02d|r', negative, min, time % 60)