mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-21 03:36:47 +01:00
This commit adds a variant of the subtle verb that uses a typing indicator, and replaces the original key binding with it.
14 lines
423 B
Plaintext
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
|