From 47451d9f53416d1726d5bc08723af013d811b957 Mon Sep 17 00:00:00 2001 From: CaelAislinn Date: Thu, 12 Jan 2012 16:59:36 +1000 Subject: [PATCH] conveyors in the mini outposts on the mining asteroid should now work properly Signed-off-by: CaelAislinn --- code/modules/recycling/conveyor2.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 4f974cf4090..5d789cbaf34 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -69,6 +69,10 @@ backwards = NORTH if(SOUTHWEST) backwards = NORTH + if(operating > 0) + movedir = forwards + else if(operating < 0) + movedir = backwards /obj/machinery/conveyor/proc/setmove() if(operating > 0)