From cdd27aec4a90c770d8d7067c4f7d8910f82fc92d Mon Sep 17 00:00:00 2001 From: mwerezak Date: Sun, 6 Jul 2014 15:44:59 -0400 Subject: [PATCH] Infected wounds show up more readily on the health scanner --- code/modules/organs/organ_external.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index e9044b8a010..5d5c66b602d 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -735,7 +735,7 @@ Note that amputating the affected organ does in fact remove the infection from t /datum/organ/external/proc/has_infected_wound() for(var/datum/wound/W in wounds) - if(W.germ_level > 150) + if(W.germ_level > INFECTION_LEVEL_ONE) return 1 return 0