From dc5ee550fb19a193f8eced7adf2cc4b6b2fbe478 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 17 Aug 2025 21:59:52 -0700 Subject: [PATCH] [MIRROR] Fixes weaver wall movement (#11454) Co-authored-by: Cameron Lennox --- .../carbon/human/species/station/traits/weaver_objs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/traits/weaver_objs.dm b/code/modules/mob/living/carbon/human/species/station/traits/weaver_objs.dm index 9415c26b80..d9dd58c50e 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits/weaver_objs.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits/weaver_objs.dm @@ -59,10 +59,10 @@ icon_state = pick(possible_icon_states) /obj/effect/weaversilk/wall/CanPass(atom/movable/mover, turf/target) - var/datum/component/weaver/comp = mover.GetComponent(/datum/component/weaver) + var/datum/component/weaver/comp = mover.GetComponent(/datum/component/weaver) //only spooders can move on by if(comp) - return - ..() + return TRUE + return FALSE /obj/structure/bed/double/weaversilk_nest name = "weaversilk nest"