From 3fa43b7f6148d57d165a439346e15cc1bb8619f8 Mon Sep 17 00:00:00 2001 From: Letter N <24603524+LetterN@users.noreply.github.com> Date: Tue, 9 Mar 2021 10:09:02 +0800 Subject: [PATCH] oops forgot this reg --- code/modules/mob/inventory.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index 0baa78f0ea..3eaefebc56 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -334,7 +334,9 @@ I.moveToNullspace() else I.forceMove(newloc) - I.dropped(src, silent) + on_item_dropped(I) + if(I.dropped(src) == ITEM_RELOCATED_BY_DROPPED) + return FALSE return TRUE //This is a SAFE proc. Use this instead of equip_to_slot()!