From 26df895cda6db9de727f37fd93181b78cdcbea79 Mon Sep 17 00:00:00 2001 From: duncathan salt Date: Mon, 4 Apr 2016 11:32:58 -0600 Subject: [PATCH] Update space_mixture.dm --- code/modules/atmospherics/gasmixtures/space_mixture.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/atmospherics/gasmixtures/space_mixture.dm b/code/modules/atmospherics/gasmixtures/space_mixture.dm index c4ff9239464..8bf0140a443 100644 --- a/code/modules/atmospherics/gasmixtures/space_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/space_mixture.dm @@ -21,6 +21,10 @@ /datum/gas_mixture/space/remove_ratio() return copy() //we're immutable, so we can just return a copy. +/datum/gas_mixture/space/share() + ..() + gases.Cut() //keep the part where it removes gas from the other mixture, but remove all our gases after the fact + /datum/gas_mixture/space/copy() return new /datum/gas_mixture/space //we're immutable, so we can just return a new instance. @@ -30,6 +34,9 @@ /datum/gas_mixture/space/copy_from_turf() return 0 //we're immutable. +/datum/gas_mixture/space/parse_gas_string() + return 0 //we're immutable. + /datum/gas_mixture/space/temperature_share() ..() temperature = TCMB