Infected wounds show up more readily on the health scanner

This commit is contained in:
mwerezak
2014-07-06 15:44:59 -04:00
parent f3951c702c
commit cdd27aec4a

View File

@@ -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() /datum/organ/external/proc/has_infected_wound()
for(var/datum/wound/W in wounds) for(var/datum/wound/W in wounds)
if(W.germ_level > 150) if(W.germ_level > INFECTION_LEVEL_ONE)
return 1 return 1
return 0 return 0