From 6db20200152e270e75bf1100bec6be495fcfa5f0 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Wed, 10 Mar 2021 10:18:52 -0900 Subject: [PATCH 1/2] Merge pull request #7964 from Shadow-Quill/Cell-Fixing Taking cell out of a standing drill now attempts to put it in your hands. --- code/modules/mining/drilling/drill.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/drilling/drill.dm b/code/modules/mining/drilling/drill.dm index 616422fcb3..9a2e618ed1 100644 --- a/code/modules/mining/drilling/drill.dm +++ b/code/modules/mining/drilling/drill.dm @@ -194,7 +194,7 @@ if (panel_open && cell && user.Adjacent(src)) to_chat(user, "You take out \the [cell].") - cell.forceMove(get_turf(user)) + user.put_in_hands(cell) component_parts -= cell cell = null return