Code format

This commit is contained in:
2025-05-15 20:37:50 +02:00
parent 9e6432d0b0
commit 69d1f9fd93
105 changed files with 24069 additions and 28084 deletions

View File

@@ -5,9 +5,7 @@ local function formatTime(time)
res = res - 60
end
s = res
if s < 10 then
s = string.format("0%d", s)
end
if s < 10 then s = string.format("0%d", s) end
if type(s) ~= "string" then tostring(s) end
return string.format("%d:%s", m, s)
end
end