From 18716c03a5a30e7b66222fda2874a9bdd56a90fc Mon Sep 17 00:00:00 2001 From: MrDoomBringer Date: Fri, 27 Apr 2018 03:27:13 -0400 Subject: [PATCH 1/2] Analyzers show temperature in Kelvin as well as Celsius now (#37441) * - Introduces a non-linear component to liver damage from alcohol so weak alcohol doesn't kill you instantly. (#36089) * wew * nicbn --- code/game/objects/items/devices/scanners.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 69149042b9..2a954302a0 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -415,7 +415,7 @@ GAS ANALYZER continue var/gas_concentration = env_gases[id][MOLES]/total_moles to_chat(user, "[env_gases[id][GAS_META][META_GAS_NAME]]: [round(gas_concentration*100, 0.01)] %") - to_chat(user, "Temperature: [round(environment.temperature-T0C)] °C") + to_chat(user, "Temperature: [round(environment.temperature-T0C)] °C ([round(environment.temperature)]K)") /obj/item/device/analyzer/AltClick(mob/user) //Barometer output for measuring when the next storm happens ..()