From 821d00f04cd5e135a88011eb6d64bd48e58fea32 Mon Sep 17 00:00:00 2001 From: joep van der velden Date: Fri, 10 Jan 2020 13:00:32 +0100 Subject: [PATCH] put_in_hands instead of the other check --- code/game/machinery/doors/airlock.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index fb07debfe7b..3f27fa26239 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -1349,8 +1349,7 @@ About the new airlock wires panel: else user.visible_message("[user] cuts down [note] from [src].", "You remove [note] from [src].") playsound(src, 'sound/items/wirecutter.ogg', 50, 1) - if(!user.put_in_active_hand(note) && !user.put_in_inactive_hand(note)) - note.forceMove(get_turf(user)) + user.put_in_hands(note) note = null update_icon() return TRUE