From b4dbd666830a86dce4095e9b930d34cc0ab59459 Mon Sep 17 00:00:00 2001 From: Archie Date: Thu, 17 Jun 2021 22:21:43 -0300 Subject: [PATCH] remove debug --- code/datums/components/infective.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/datums/components/infective.dm b/code/datums/components/infective.dm index 26f163c5..8a3abb7a 100644 --- a/code/datums/components/infective.dm +++ b/code/datums/components/infective.dm @@ -77,16 +77,12 @@ I.permeability_coefficient = old_permeability /datum/component/infective/proc/try_infect_crossed(datum/source, atom/movable/M) - message_admins("Trying to infect from [source] to [M]") if(isliving(M)) - message_admins("[M] is living. Trying to infect.") try_infect(M, BODY_ZONE_PRECISE_L_FOOT) /datum/component/infective/proc/try_infect_streak(datum/source, list/directions, list/output_diseases) output_diseases |= diseases /datum/component/infective/proc/try_infect(mob/living/L, target_zone) - message_admins("Trying to infect [L] through [target_zone]") for(var/V in diseases) L.ContactContractDisease(V, target_zone) - message_admins("Disease found, trying to infect [L] with [V]")