From b4d532ed4f9f4f26974955485faeabcab22ee982 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sun, 22 Sep 2019 15:54:24 +1000 Subject: [PATCH] Fixes grab having big delay on deletion after throws --- code/modules/mob/living/living.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index e6fde9860fa..bb0759b5eef 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1281,6 +1281,7 @@ default behaviour is: var/turf/end_T = get_turf(target) if(end_T) add_attack_logs(src,M,"Thrown via grab to [end_T.x],[end_T.y],[end_T.z]") + src.drop_from_inventory(G) //VOREStation Addition: grab exploit fix src.drop_from_inventory(item) if(!item || !isturf(item.loc))