From 4e1f7228b846a3c947f774f9d9f82f802df5a6fc Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 18 Jul 2022 17:39:24 +0200 Subject: [PATCH] [MIRROR] Fixes active turf message speaking gibberish [MDB IGNORE] (#15004) * Fixes active turf message speaking gibberish (#68499) * Fixes active turf message speaking gibberish Co-authored-by: ShizCalev --- code/controllers/subsystem/air.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/air.dm b/code/controllers/subsystem/air.dm index f728332b984..e49518324d6 100644 --- a/code/controllers/subsystem/air.dm +++ b/code/controllers/subsystem/air.dm @@ -570,7 +570,7 @@ SUBSYSTEM_DEF(air) EG.dismantle() CHECK_TICK - var/msg = "HEY! LISTEN! [DisplayTimeText(world.timeofday - timer)] were wasted processing [starting_ats] turf(s) (connected to [ending_ats - starting_ats] other turfs) with atmos differences at round start." + var/msg = "HEY! LISTEN! [DisplayTimeText(world.timeofday - timer, 0.00001)] were wasted processing [starting_ats] turf(s) (connected to [ending_ats - starting_ats] other turfs) with atmos differences at round start." to_chat(world, span_boldannounce("[msg]")) warning(msg)