2,875
edits
m (Correct toStringLong missing milliseconds) |
m (Small fix to toStringLong) |
||
Line 116: | Line 116: | ||
return string.format('0 seconds') | return string.format('0 seconds') | ||
end | end | ||
-- Special case to show actiontime related numbers. | |||
return string.format('%. | return string.format('%.2f seconds', totalSeconds) | ||
end | end | ||
Line 138: | Line 138: | ||
end | end | ||
if seconds > 0 then | if seconds > 0 then | ||
table.insert(output, string.format('% | table.insert(output, string.format('%.2f second%s', seconds, (seconds > 1) and "s" or "")) | ||
end | end | ||
return table.concat(output, ", ") | return table.concat(output, ", ") | ||
end | end |
edits