mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 02:26:32 +01:00
Co-authored-by: silicons <no@you.cat> Co-authored-by: LordME <58342752+TheLordME@users.noreply.github.com>
20 lines
488 B
Plaintext
20 lines
488 B
Plaintext
/*
|
|
/datum/keybinding/emote
|
|
category = CATEGORY_EMOTE
|
|
weight = WEIGHT_EMOTE
|
|
var/emote_key
|
|
|
|
/datum/keybinding/emote/proc/link_to_emote(datum/emote/faketype)
|
|
hotkey_keys = list()
|
|
emote_key = initial(faketype.key)
|
|
name = initial(faketype.key)
|
|
full_name = capitalize(initial(faketype.key))
|
|
description = "Do the emote '*[emote_key]'"
|
|
|
|
/datum/keybinding/emote/down(client/user)
|
|
. = ..()
|
|
return user.mob.emote(emote_key, intentional=TRUE)
|
|
*/
|
|
|
|
// THIS FILE DISABLED UNTIL DATUM EMOTES.
|