possible fix for a conveyor bug

Signed-off-by: caelaislinn <cael_aislinn@yahoo.com.au>
This commit is contained in:
caelaislinn
2012-06-15 00:06:20 +10:00
parent 37bee15787
commit 2b9b845daf
+1 -1
View File
@@ -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