From 9ba92d7c2f9c0d4fcfbd60a75fa4db3aa3f6ab46 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Sun, 17 Aug 2025 21:59:40 -0400 Subject: [PATCH] fixes weaver (#18287) --- .../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 f3cbffa127..8c05e26769 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 @@ -57,10 +57,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"