diff --git a/code/datums/keybindings/mob.dm b/code/datums/keybindings/mob.dm index 4eca61522be..c11ed0af4e8 100644 --- a/code/datums/keybindings/mob.dm +++ b/code/datums/keybindings/mob.dm @@ -25,9 +25,8 @@ /datum/keybinding/mob/drop_held_object/down(client/C) . = ..() var/obj/item/I = C.mob.get_active_hand() - SEND_SIGNAL(C.mob, COMSIG_MOB_WILLINGLY_DROP) if(I) - C.mob.drop_item() + C.mob.drop_item_v() else to_chat(C, "You have nothing to drop in your hand!")