Adds necrotic organ detection to the advanced med scanner

This commit is contained in:
Crazylemon64
2016-03-18 11:14:13 -07:00
parent 33f6facdb4
commit 3077a397de
3 changed files with 10 additions and 5 deletions
+5 -5
View File
@@ -86,11 +86,11 @@ var/list/organ_cache = list()
return
if(!owner)
if(reagents)
var/datum/reagent/blood/B = locate(/datum/reagent/blood) in reagents.reagent_list
if(B && prob(40))
reagents.remove_reagent("blood",0.1)
blood_splatter(src,B,1)
if(reagents && prob(40))
reagents.remove_any(0.1)
for(var/datum/reagent/R in reagents.reagent_list)
R.reaction_turf(get_turf(src), 0.1)
// Maybe scale it down a bit, have it REALLY kick in once past the basic infection threshold
// Another mercy for surgeons preparing transplant organs
germ_level++