communication hotkeys
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
category = CATEGORY_COMMUNICATION
|
||||
|
||||
/datum/keybinding/client/communication/say
|
||||
hotkey_keys = list("T")
|
||||
name = "Say"
|
||||
hotkey_keys = list("CtrlT")
|
||||
name = "say"
|
||||
full_name = "IC Say"
|
||||
|
||||
/datum/keybinding/client/communication/say/down(client/user)
|
||||
@@ -22,9 +22,9 @@
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/client/communication/me
|
||||
hotkey_keys = list("M")
|
||||
name = "Me"
|
||||
full_name = "Custom Emote (/Me)"
|
||||
hotkey_keys = list("CtrlM")
|
||||
name = "me"
|
||||
full_name = "Me (emote)"
|
||||
|
||||
/datum/keybinding/client/communication/me/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
@@ -33,24 +33,24 @@
|
||||
return TRUE
|
||||
|
||||
//indicators
|
||||
/datum/keybinding/mob/say_with_indicator
|
||||
hotkey_keys = list("CtrlT")
|
||||
/datum/keybinding/client/communication/say_with_indicator
|
||||
hotkey_keys = list("T")
|
||||
classic_keys = list()
|
||||
name = "say_with_indicator"
|
||||
full_name = "Say with Typing Indicator"
|
||||
|
||||
/datum/keybinding/mob/say_with_indicator/down(client/user)
|
||||
/datum/keybinding/client/communication/say_with_indicator/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.say_typing_indicator()
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/mob/me_with_indicator
|
||||
hotkey_keys = list("CtrlM")
|
||||
/datum/keybinding/client/communication/me_with_indicator
|
||||
hotkey_keys = list("M")
|
||||
classic_keys = list()
|
||||
name = "me_with_indicator"
|
||||
full_name = "Me (emote) with Typing Indicator"
|
||||
|
||||
/datum/keybinding/mob/me_with_indicator/down(client/user)
|
||||
/datum/keybinding/client/communication/me_with_indicator/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.me_typing_indicator()
|
||||
return TRUE
|
||||
Reference in New Issue
Block a user