From 8724953c1a13ab3ff87d871552678312680ae01a Mon Sep 17 00:00:00 2001 From: Spock Date: Thu, 19 Oct 2023 16:58:20 -0700 Subject: [PATCH] Make gas analyzers show volume --- code/modules/atmospherics/gasmixtures/gas_mixture.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 643e387e9ab8..3d68379cd7b1 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -543,6 +543,7 @@ return var/pressure = return_pressure() . += SPAN_NOTICE("Pressure: [round(pressure, 0.001)] kPa") + . += SPAN_NOTICE("Volume: [round(volume, 0.001)] L") . += SPAN_NOTICE("Temperature: [round(temperature, 0.001)]°K ([round(temperature - T0C, 0.001)]°C)") var/reagents = 0 var/other = 0