diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm index 8142b00bcaf..62911193bd3 100644 --- a/code/__HELPERS/time.dm +++ b/code/__HELPERS/time.dm @@ -5,7 +5,7 @@ //Returns the world time in english proc/worldtime2text(timestamp = world.time) - return "[round(timestamp / 36000) + 12] : [(timestamp / 600 % 60) < 10 ? add_zero(timestamp / 600 % 60, 1) : timestamp / 600 % 60]" + return "[round(timestamp / 36000) + 12]:[(timestamp / 600 % 60) < 10 ? add_zero(timestamp / 600 % 60, 1) : timestamp / 600 % 60]" proc/time_stamp() return time2text(world.timeofday, "hh:mm:ss")