From b70bb86c12b38f322085415f5971ddef91d5ba0a Mon Sep 17 00:00:00 2001 From: DOOM Date: Thu, 13 Jun 2024 03:05:48 -0700 Subject: [PATCH] just check if it's hugged --- .../living/carbon/xenomorph/abilities/lurker/lurker_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm index f16511ca63f7..ee73abc20414 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm @@ -344,7 +344,7 @@ xeno.visible_message(SPAN_DANGER("[xeno] grabs [target_carbon]’s head aggressively."), \ SPAN_XENOWARNING("We grab [target_carbon]’s head aggressively.")) - if(HAS_TRAIT(target_carbon, TRAIT_NESTED) || (target_carbon.status_flags & XENO_HOST)) + if(target_carbon.status_flags & XENO_HOST) for(var/obj/item/alien_embryo/embryo in target_carbon) if(HIVE_ALLIED_TO_HIVE(xeno.hivenumber, embryo.hivenumber)) to_chat(xeno, SPAN_WARNING("We should not harm this host! It has a sister inside."))