From 2739c2b837a75da2718e3bd389c271db9c52d2c6 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 18 Dec 2018 14:03:04 -0500 Subject: [PATCH] Ports synth overheating fixes This PR ports a fix from Chompstation regarding synths overheating in bellies. Hopefully it works here. --- code/modules/vore/eating/living_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index ec5ad92b46a..27a00a85cbd 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -458,9 +458,9 @@ // This is about 0.896m^3 of atmosphere /datum/gas_mixture/belly_air - volume = 1000 + volume = 2500 temperature = 293.150 - total_moles = 40 + total_moles = 104 /datum/gas_mixture/belly_air/New() . = ..()