From 2b9b845daf3fd21cca4b49ff12e7db4181c60b94 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Fri, 15 Jun 2012 00:06:20 +1000 Subject: [PATCH] possible fix for a conveyor bug Signed-off-by: caelaislinn --- code/modules/recycling/conveyor2.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index c2136c8cdc7..9f59340ee07 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -123,7 +123,7 @@ //if it's a crate, move the item into the crate var/turf/T = get_step(A,movedir) for(var/obj/structure/closet/crate/C in T) - if(C && C.opened) + if(C && C.opened && !istype(A, /obj/structure/closet/crate)) A.loc = C.loc break