From ee657d64f8e106f251ff3c9196e0010c675b4e4a Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 3 Apr 2015 19:15:47 -0700 Subject: [PATCH] Fixes handle_grasp() spam. --- code/modules/mob/living/carbon/human/human_organs.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_organs.dm b/code/modules/mob/living/carbon/human/human_organs.dm index def0d3726b..e40b915226 100644 --- a/code/modules/mob/living/carbon/human/human_organs.dm +++ b/code/modules/mob/living/carbon/human/human_organs.dm @@ -104,8 +104,12 @@ if(E.is_broken()) if(E.body_part == HAND_LEFT) + if(!l_hand) + continue drop_from_inventory(l_hand) else + if(!r_hand) + continue drop_from_inventory(r_hand) var/emote_scream = pick("screams in pain and ", "lets out a sharp cry and ", "cries out and ")