From cf176673f7f9f1daf389f3396662168b77400ee2 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 4 Jul 2026 20:47:51 +0100 Subject: [PATCH] stops traps going under jungle bushes --- .../mob/living/carbon/xenomorph/abilities/general_powers.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm index ce73fa67c851..20bdfa44f9aa 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm @@ -723,8 +723,8 @@ to_chat(xeno, SPAN_XENOWARNING("We cannot make a hole on a light!")) return FALSE - if(locate(/obj/structure/flora/jungle/vines) in src) - to_chat(xeno, SPAN_XENOWARNING("We cannot make a hole under the vines!")) + if(locate(/obj/structure/flora/jungle) in src) + to_chat(xeno, SPAN_XENOWARNING("We cannot make a hole under the flora here!")) return FALSE if(!xeno.check_alien_construction(src, check_doors = TRUE))