From f7cd72b7f950f2c77c1197657892a95f380c8979 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 4 Jan 2015 19:06:45 +1030 Subject: [PATCH] Fixes #7670 --- code/game/machinery/autolathe.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 6f9a2c4b95..71a48df8fa 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -117,6 +117,9 @@ dismantle() return + if(O.loc != user && !(istype(O,/obj/item/stack))) + return 0 + //Resources are being loaded. var/obj/item/eating = O if(!eating.matter)