From 55feb19e08bf5e21228abff496cff0112f485e2a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 18 Oct 2021 00:16:19 +0200 Subject: [PATCH] [MIRROR] Assembly bomb creation logging now logs in Kelvin. [MDB IGNORE] (#8895) * Assembly bomb creation logging now logs in Kelvin. (#62148) It was in fucking celsius, but they never specified that they were in celsius, and one would assume it would be in kelvin as that's the default unit. * Assembly bomb creation logging now logs in Kelvin. Co-authored-by: Pickle-Coding <58013024+Pickle-Coding@users.noreply.github.com> --- code/modules/assembly/bomb.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/assembly/bomb.dm b/code/modules/assembly/bomb.dm index a4f5da815d8..4f5d05f2e8d 100644 --- a/code/modules/assembly/bomb.dm +++ b/code/modules/assembly/bomb.dm @@ -59,7 +59,7 @@ if(I.use_tool(src, user, 0, volume=40)) status = TRUE var/datum/gas_mixture/bomb_mix = bombtank.return_air() - log_bomber(user, "welded a single tank bomb,", src, "| Temp: [bomb_mix.temperature-T0C]") + log_bomber(user, "welded a single tank bomb,", src, "| Temp: [bomb_mix.temperature]") to_chat(user, span_notice("A pressure hole has been bored to [bombtank] valve. \The [bombtank] can now be ignited.")) add_fingerprint(user) return TRUE