From faf11b140cc188a65ce63b176f6ede35df334eeb Mon Sep 17 00:00:00 2001 From: ReoDaProtovali Date: Sun, 6 Oct 2024 12:22:17 -0500 Subject: [PATCH] == not = why did this compile in testing --- code/modules/recycling/disposal/pipe.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal/pipe.dm b/code/modules/recycling/disposal/pipe.dm index 57d0b47a..cd35ad94 100644 --- a/code/modules/recycling/disposal/pipe.dm +++ b/code/modules/recycling/disposal/pipe.dm @@ -265,8 +265,9 @@ var/obj/structure/disposaloutlet/O = locate() in T if(O) //GS add: Fixes a minor issue where the trunk gets linked to feeding tube improperly - if(O.type = /obj/structure/disposaloutlet/industrial_feeding_tube) + if(O.type == /obj/structure/disposaloutlet/industrial_feeding_tube) return + //GS add End linked = O