From 71c90e9f47271f55c3a975d6fc0d668520b2d51b Mon Sep 17 00:00:00 2001 From: Sean Dandrea <3578098+seanofandrea@users.noreply.github.com> Date: Sun, 21 May 2023 14:26:12 -0400 Subject: [PATCH] Add default binding for Give and Whisper, remove Cycle Intents (#20747) Co-authored-by: Sean Dandrea --- code/datums/keybindings/carbon.dm | 2 +- code/datums/keybindings/living.dm | 1 + code/datums/keybindings/mob.dm | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/datums/keybindings/carbon.dm b/code/datums/keybindings/carbon.dm index 69aaa35b136..458e4a31454 100644 --- a/code/datums/keybindings/carbon.dm +++ b/code/datums/keybindings/carbon.dm @@ -24,7 +24,7 @@ /datum/keybinding/carbon/give_item name = "Give Item (Toggle)" - keys = null + keys = list("G") /datum/keybinding/carbon/give_item/down(client/C) . = ..() diff --git a/code/datums/keybindings/living.dm b/code/datums/keybindings/living.dm index fb7f6dd5ed7..4dfb11f1073 100644 --- a/code/datums/keybindings/living.dm +++ b/code/datums/keybindings/living.dm @@ -24,6 +24,7 @@ /datum/keybinding/living/whisper name = "Whisper" + keys = list("U") /datum/keybinding/living/whisper/down(client/C) var/mob/M = C.mob diff --git a/code/datums/keybindings/mob.dm b/code/datums/keybindings/mob.dm index c11ed0af4e8..51930cfbb8e 100644 --- a/code/datums/keybindings/mob.dm +++ b/code/datums/keybindings/mob.dm @@ -41,7 +41,7 @@ // Intents /datum/keybinding/mob/prev_intent name = "Previous Intent" - keys = list("F") + keys = null /datum/keybinding/mob/prev_intent/down(client/C) . = ..() @@ -49,7 +49,7 @@ /datum/keybinding/mob/next_intent name = "Next Intent" - keys = list("G", "Insert") + keys = list("Insert") /datum/keybinding/mob/next_intent/down(client/C) . = ..()