From 02f18af89311daf19629b317cdd6de91bf2b3e8a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 3 Aug 2016 03:10:41 -0700 Subject: [PATCH] Fixed a bug in atmos code. --- code/modules/atmospherics/gasmixtures/gas_mixture.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 391b474f68e..ac9f89ad9ff 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -372,7 +372,7 @@ var/list/gaslist_cache = null copy.temperature = temperature for(var/id in cached_gases) - add_gas(id) + copy.add_gas(id) copy_gases[id][MOLES] = cached_gases[id][MOLES] return copy