Fix for cryo stopping bleeding.

Forgot that internal bleeding doesn't use drip()
This commit is contained in:
cib
2012-11-23 16:04:16 +01:00
parent 912a85b1a1
commit 300219813d
2 changed files with 1 additions and 5 deletions

View File

@@ -86,10 +86,6 @@
/mob/living/carbon/human/proc/drip(var/amt as num)
if(!amt)
return
if(bodytemperature < 170)
// if the body is cooled enough, the metabolism is basically stopped,
// which will prevent from bleeding out
return
var/amm = 0.1 * amt
var/turf/T = get_turf(src)