From a8ffde68da79237ccd129f2a12deb99cc4dcfd3d Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 5 Jul 2021 23:16:29 -0400 Subject: [PATCH] CONVEYORS --- code/modules/recycling/conveyor2.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 37dd909a74..d31b1f9378 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -67,8 +67,8 @@ /obj/machinery/conveyor/proc/update_dir() if(!(dir in cardinal)) // Diagonal. Forwards is *away* from dir, curving to the right. - forwards = turn(dir, 135) - backwards = turn(dir, 45) + forwards = turn(dir, 45) + backwards = turn(dir, 135) else forwards = dir backwards = turn(dir, 180)