Files
Darius 70d9fef21d Add subtle with typing indicator
This commit adds a variant of the subtle verb that uses a typing indicator, and replaces the original key binding with it.
2023-02-01 00:29:03 -05:00

14 lines
423 B
Plaintext

/datum/keybinding/client/communication/subtle
hotkey_keys = list("Ctrl5")
/datum/keybinding/client/communication/subtle_indicator
hotkey_keys = list("5")
name = "Subtle_Indicator"
full_name = "Subtle Emote (with indicator)"
clientside = "subtle-indicator"
/datum/keybinding/client/communication/subtle_indicator/down(client/user)
var/mob/living/mob_keybound = user.mob
mob_keybound.subtle_indicator()
return TRUE