From 41f09299c909d8bc2c07acc0c7795ea3c6bc5b07 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Wed, 20 Feb 2013 09:17:41 +0400 Subject: [PATCH] Compressed implant item now will be put in hands instead of the floor. --- code/game/objects/items/weapons/implants/implant.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/implants/implant.dm b/code/game/objects/items/weapons/implants/implant.dm index deddad910b2..d5875a9b9c5 100644 --- a/code/game/objects/items/weapons/implants/implant.dm +++ b/code/game/objects/items/weapons/implants/implant.dm @@ -440,7 +440,7 @@ the implant may become unstable and either pre-maturely inject the subject or si activate() var/turf/t = get_turf(src) - src.scanned.loc = t + put_in_hands(t) del src implanted(mob/source as mob)