From c0e8482976bf27dcd2991e52e3eafbb411917db0 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Sun, 21 Sep 2025 16:53:40 -0400 Subject: [PATCH] grab fix (#18547) --- 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 53aae1ed56d..8b6fe389fd3 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 /*