From cf7754a55ad7c270feee491f38d96af411ae98a3 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Thu, 15 Feb 2018 03:42:49 -0600 Subject: [PATCH] Fixes #2810 --- code/modules/nifsoft/software/05_health.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/nifsoft/software/05_health.dm b/code/modules/nifsoft/software/05_health.dm index de7ef184cb..2337d58029 100644 --- a/code/modules/nifsoft/software/05_health.dm +++ b/code/modules/nifsoft/software/05_health.dm @@ -203,8 +203,8 @@ proc/resp_breath() if(!active) return null - var/datum/gas_mixture/breath = new() - breath.adjust_gas("oxygen", 300) + var/datum/gas_mixture/breath = new(BREATH_VOLUME) + breath.adjust_gas("oxygen", BREATH_MOLES) breath.temperature = T20C return breath