From 1f93cff0a692087134ada3819dc0425d279d19ee Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 30 Jun 2014 23:01:58 +0930 Subject: [PATCH] Fixed lathes eating multitools and wirecutters when open. --- code/game/machinery/autolathe.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 080faf4b89..5df804d84b 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -119,6 +119,11 @@ return if (opened) + //Don't eat multitools or wirecutters used on an open lathe. + if(istype(O, /obj/item/device/multitool) || istype(O, /obj/item/weapon/wirecutters)) + attack_hand(user) + return + //Dismantle the frame. if(istype(O, /obj/item/weapon/crowbar)) dismantle()