From 4caa268adc6fd2de9b07ec348285c9ee5e0339fd Mon Sep 17 00:00:00 2001 From: Kirby703 <14858059+Kirby703@users.noreply.github.com> Date: Sun, 13 Aug 2023 13:51:36 -0400 Subject: [PATCH] easter egg scholars remain divided on whether 15640 frames should also be rounded up so as to never jump by .03, or whether it should remain rounded down so as to only have one exceptional timestamp rather than two --- funcs.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/funcs.lua b/funcs.lua index dfd8aa3..831e97f 100644 --- a/funcs.lua +++ b/funcs.lua @@ -60,6 +60,9 @@ function formatTime(frames) min = math.floor(frames/3600) sec = math.floor(frames/60) % 60 hund = math.floor(frames/.6) % 100 + if frames == 15641 then + hund = math.ceil(frames/.6) % 100 + end str = string.format("%02d:%02d.%02d", min, sec, hund) return str end