AIRBOSS v0.5.4

This commit is contained in:
Frank
2018-12-14 00:17:11 +01:00
parent 07f313a4a6
commit 5201c73d35
3 changed files with 60 additions and 39 deletions

View File

@@ -558,7 +558,7 @@ function UTILS.SecondsToClock(seconds)
-- Seconds of this day.
local _seconds=seconds%(60*60*24)
if seconds <= 0 then
if seconds<0 then
return nil
else
local hours = string.format("%02.f", math.floor(_seconds/3600))