From 536a3a6070794f6b11a81198f25f7532b0194244 Mon Sep 17 00:00:00 2001 From: Dennok Date: Wed, 16 Sep 2015 14:34:20 +0300 Subject: [PATCH] fix #10882 --- code/modules/recycling/conveyor2.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 738380d7d0e..957c3b574dc 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -40,8 +40,9 @@ /obj/machinery/conveyor/proc/setmove() if(operating == 1) movedir = forwards - else + else if(operating == -1) movedir = backwards + else operating = 0 update() /obj/machinery/conveyor/proc/update() @@ -80,7 +81,7 @@ if(isrobot(user)) return //Carn: fix for borgs dropping their modules on conveyor belts if(I.loc != user) return // This should stop mounted modules ending up outside the module. - user.drop_item(src) + user.drop_item(get_turf(src)) return // attack with hand, move pulled object onto conveyor