From 40e617fe219cd06241dfcd6bf09bc5f809455f00 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 21 Sep 2025 14:07:47 -0700 Subject: [PATCH] [MIRROR] Grab Drop Fix (#11714) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/modules/mob/living/carbon/human/human_attackhand.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 53aae1ed56..8b6fe389fd 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -480,15 +480,13 @@ if(lgrab.affecting) visible_message(span_danger("[user] has broken [src]'s grip on [lgrab.affecting]!")) success = TRUE - spawn(1) - qdel(lgrab) + drop_from_inventory(lgrab) if(istype(r_hand, /obj/item/grab)) var/obj/item/grab/rgrab = r_hand if(rgrab.affecting) visible_message(span_danger("[user] has broken [src]'s grip on [rgrab.affecting]!")) success = TRUE - spawn(1) - qdel(rgrab) + drop_from_inventory(rgrab) return success /*