From ebcacc733faa6e432b347af6006abe3b1c37e526 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 6 Oct 2017 22:35:48 -0400 Subject: [PATCH] Makes put_in_hands use drop_location() (#31347) --- code/modules/mob/inventory.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index 5207c92129..59e7db1286 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -216,7 +216,7 @@ if(del_on_fail) qdel(I) return FALSE - I.forceMove(get_turf(src)) + I.forceMove(drop_location()) I.layer = initial(I.layer) I.plane = initial(I.plane) I.dropped(src)