From 3c89b0ea18706ebe63b70ca7c9f080a1eb2aeb9e Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Sat, 13 Jun 2015 00:46:59 -0700 Subject: [PATCH] Autolathe now spits out stuff on it's location instead of at your feet all other fabricators spit crap out on their location why does autolathe gotta be a special snowflake now with the proper branch --- code/game/machinery/autolathe.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 83112ea778f..eca7dbcef9d 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -262,7 +262,7 @@ if(!making || !src) return //Create the desired item. - var/obj/item/I = new making.path(get_step(loc, get_dir(src,usr))) + var/obj/item/I = new making.path(loc) if(multiplier > 1 && istype(I, /obj/item/stack)) var/obj/item/stack/S = I S.amount = multiplier