From ed56e73b83bb381f35810b2184476ff1fc0dda01 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Sun, 20 Nov 2016 12:36:05 -0800 Subject: [PATCH] Fixes #2630 --- code/game/machinery/machinery.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index af8bd8eb41..d3107869ce 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -136,7 +136,13 @@ Class Procs: component_parts -= A if(contents) // The same for contents. for(var/atom/A in contents) - qdel(A) + if(ishuman(A)) + var/mob/living/carbon/human/H = A + H.client.eye = H.client.mob + H.client.perspective = MOB_PERSPECTIVE + H.loc = src.loc + else + qdel(A) return ..() /obj/machinery/process()//If you dont use process or power why are you here