From 3f327232f163f4f83df771442da41fc2b6be4b7f Mon Sep 17 00:00:00 2001 From: Guti Date: Mon, 13 Jan 2025 18:51:49 +0100 Subject: [PATCH] SMARTER --- code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm b/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm index 8235ee4dc71..2c402df5f13 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm @@ -92,6 +92,8 @@ . = ..() if(iscarbon(A)) var/mob/living/carbon/human/victim = A + if((victim.HasDisease(base_disease) || !victim.CanContractDisease(base_disease)) && prob(75)) + ai_holder.lose_target() victim.ContractDisease(base_disease) /mob/living/simple_mob/vore/aggressive/macrophage/death()