From 54075aacebf97aa3beb6a54f43dc3b72ab2b5556 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 26ddf7f3b43..af85b328cf3 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -772,7 +772,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