Being in a freezer crate or refrigerator now has the same effect on meat as 0C air.

Kitchen cold room tweaked a bit more.
Cold room added to Uterus.

Changelog updated to indicate new freezer crate/refrigerator functionality.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2832 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
heisen51@gmail.com
2011-12-27 11:46:15 +00:00
parent 1e7de42e8b
commit 8295264dc5
9 changed files with 5795 additions and 5721 deletions
+15
View File
@@ -213,10 +213,15 @@
..()
process()
if (src.infreezer)
health = 180
return
var/turf/location = get_turf(src.loc)
var/datum/gas_mixture/environment = location.return_air()
switch(environment.temperature)
if(0 to T0C)
health = 180
return
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)
@@ -231,10 +236,15 @@
desc = "A synthetic slab of flesh."
process()
if (src.infreezer)
health = 180
return
var/turf/location = get_turf(src.loc)
var/datum/gas_mixture/environment = location.return_air()
switch(environment.temperature)
if(0 to T0C)
health = 180
return
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)
@@ -268,10 +278,15 @@
var/subjectjob = null
process()
if (src.infreezer)
health = 180
return
var/turf/location = get_turf(src.loc)
var/datum/gas_mixture/environment = location.return_air()
switch(environment.temperature)
if(0 to T0C)
health = 180
return
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)