From bd1e5e5142de1a4fa3eade7901a30ada358cfae2 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Tue, 17 Jan 2023 00:17:06 -0600 Subject: [PATCH] The drop hotkey is now consistent with the drop verb (#20192) --- code/datums/keybindings/mob.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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!")