From fd7020b8f502d0de0aebdb2ed72de43a0bcfeea5 Mon Sep 17 00:00:00 2001 From: killer653 Date: Fri, 16 Jun 2017 15:17:43 -0400 Subject: [PATCH] Fixes suffocation when eaten Credit to Shadow Larkens for fix --- code/modules/vore/eating/living_vr.dm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 3eab4587b4b..81dd22e43b4 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -429,9 +429,12 @@ // This is about 0.896m^3 of atmosphere /datum/gas_mixture/belly_air - volume = 1000 - gas = list( - "oxygen" = 21, - "nitrogen" = 79) - temperature = 293.150 - total_moles = 40 + volume = 1000 + temperature = 293.150 + total_moles = 40 + +/datum/gas_mixture/belly_air/New() + . = ..() + gas = list( + "oxygen" = 21, + "nitrogen" = 79)