From 67e6c48f83b7e6897b3ab500966745f5d1653be5 Mon Sep 17 00:00:00 2001 From: Casey Date: Sun, 27 Feb 2022 14:23:52 -0500 Subject: [PATCH] Merge pull request #12325 from BonniePandora/AtmosQoL1 Analyzer information upgrade --- code/_helpers/atmospherics.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/_helpers/atmospherics.dm b/code/_helpers/atmospherics.dm index 2f2d1f2b63..83b5982f13 100644 --- a/code/_helpers/atmospherics.dm +++ b/code/_helpers/atmospherics.dm @@ -21,8 +21,9 @@ var/total_moles = mixture.total_moles results += "Pressure: [round(pressure,0.1)] kPa" for(var/mix in mixture.gas) - results += "[gas_data.name[mix]]: [round((mixture.gas[mix] / total_moles) * 100)]%" + results += "[gas_data.name[mix]]: [round((mixture.gas[mix] / total_moles) * 100)]% ([round(mixture.gas[mix], 0.01)] moles)" results += "Temperature: [round(mixture.temperature-T0C)]°C" + results += "Heat Capacity: [round(mixture.heat_capacity(),0.1)]" else results += "\The [target] is empty!"