Fixed a small issue with germs

This commit is contained in:
CIB
2012-11-13 14:12:40 +01:00
parent 74c5235c9d
commit d693836fb2

View File

@@ -1,4 +1,3 @@
//check if mob is lying down on something we can operate him on.
/proc/can_operate(mob/living/carbon/M)
return (locate(/obj/machinery/optable, M.loc) && M.resting) || \
@@ -64,7 +63,7 @@ proc/spread_germs_to_organ(datum/organ/external/E, mob/living/carbon/human/user)
if(user.gloves)
germ_level = user.gloves.germ_level
E.germ_level = germ_level
E.germ_level = max(E.germ_level, germ_level)
//////////////////////////////////////////////////////////////////