diff --git a/CookieMonster.js b/CookieMonster.js index ce31109..15f3594 100644 --- a/CookieMonster.js +++ b/CookieMonster.js @@ -567,7 +567,12 @@ CM.Disp.GetTimeColor = function(price, bank, cps) { var text; if (bank >= price) { color = CM.Disp.colorGreen; - text = 'Done!'; + if (CM.Config.TimeFormat) { + text = '00:00:00:00:00'; + } + else { + text = 'Done!'; + } } else { var time = (price - bank) / cps; diff --git a/src/Disp.js b/src/Disp.js index 7279416..4a4a259 100644 --- a/src/Disp.js +++ b/src/Disp.js @@ -60,7 +60,12 @@ CM.Disp.GetTimeColor = function(price, bank, cps) { var text; if (bank >= price) { color = CM.Disp.colorGreen; - text = 'Done!'; + if (CM.Config.TimeFormat) { + text = '00:00:00:00:00'; + } + else { + text = 'Done!'; + } } else { var time = (price - bank) / cps;