From f020323458d83b8317a8b89411920959c9e453bb Mon Sep 17 00:00:00 2001 From: Erik Darkpaws Date: Sun, 16 Dec 2018 23:00:22 -0800 Subject: [PATCH] Bellies were set so some weird atmospheric numbers, this has been changed to nearly match normal atmos (maybe off by 0.01moles) and Synth Tesh no longer overheat in bellies because of it! --- code/modules/vore/eating/living_vr.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 769e6bd031..4e40af36f7 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -355,7 +355,7 @@ var/obj/effect/overlay/aiholo/holo = loc holo.drop_prey() //Easiest way log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(holo.master)] (AI HOLO) ([holo ? "JMP" : "null"])") - + //Don't appear to be in a vore situation else to_chat(src,"You aren't inside anyone, though, is the thing.") @@ -455,11 +455,11 @@ var/datum/gas_mixture/belly_air/air = new(1000) return air -// This is about 0.896m^3 of atmosphere +// This is about 0.896m^3 of atmosphere / Erik's Edit. Volume and moles changed to match station atmosphere, Synth Tesh no longer overheat in bellies! /datum/gas_mixture/belly_air - volume = 1000 + volume = 2500 temperature = 293.150 - total_moles = 40 + total_moles = 104 /datum/gas_mixture/belly_air/New() . = ..()