From e1963f4ae51edbae25fd3a565e9f84f5f0a95712 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 16 Apr 2019 18:36:39 -0400 Subject: [PATCH] fixes the bug where space isnt actually a vacuum --- code/modules/atmospherics/gasmixtures/immutable_mixtures.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm b/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm index db6bc45f2b..2a843ed237 100644 --- a/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm +++ b/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm @@ -62,7 +62,7 @@ ..() gases[/datum/gas/nitrogen] = MOLES_O2STANDARD + MOLES_N2STANDARD -/datum/gas_mixture/immutable/share(datum/gas_mixture/sharer, atmos_adjacent_turfs = 4) +/datum/gas_mixture/immutable/cloner/share(datum/gas_mixture/sharer, atmos_adjacent_turfs = 4) . = ..(sharer, 0) gases[/datum/gas/nitrogen] = MOLES_O2STANDARD + MOLES_N2STANDARD