From 70b910aa439f7d65ee75f1df5de7106728461f7e Mon Sep 17 00:00:00 2001 From: lm40 Date: Sun, 3 Oct 2021 18:53:28 -0400 Subject: [PATCH] Fixes throwing leaving a shadowitem in your hand --- 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 4252615d04d..d818336b930 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1049,6 +1049,7 @@ do_give(H) return TRUE make_item_drop_sound(I) + drop_from_inventory(item) I.forceMove(get_turf(target)) return TRUE