From 41563da576285becf0bcb1c7424327909e8f8b21 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Mon, 7 Mar 2011 16:12:06 +0000 Subject: [PATCH] bug fix: - destroying an autolathe no longer leaves a clone of the lathe under the frame noticed problem: - autolathe construction is bugged git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1169 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/machinery/autolathe.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 1d1fdd539f9..6e5702f8ce7 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -35,6 +35,7 @@ if(g_amount >= 3750) var/obj/item/stack/sheet/glass/G = new /obj/item/stack/sheet/glass(src.loc) G.amount = round(g_amount / 3750) + del(src) return 1 else user << "\red You can't load the autolathe while it's opened."