Add default binding for Give and Whisper, remove Cycle Intents (#20747)

Co-authored-by: Sean Dandrea <SeanOfAndrea@outlook.com>
This commit is contained in:
Sean Dandrea
2023-05-21 13:26:12 -05:00
committed by GitHub
co-authored by Sean Dandrea
parent bf42f3dac0
commit 71c90e9f47
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -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)
. = ..()
+1
View File
@@ -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
+2 -2
View File
@@ -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)
. = ..()