mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-03 05:52:43 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
18 lines
475 B
Plaintext
18 lines
475 B
Plaintext
var/list/_brain_default_emotes = list(
|
|
/decl/emote/audible/alarm,
|
|
/decl/emote/audible/alert,
|
|
/decl/emote/audible/notice,
|
|
/decl/emote/audible/whistle,
|
|
/decl/emote/audible/synth,
|
|
/decl/emote/audible/beep,
|
|
/decl/emote/audible/boop,
|
|
/decl/emote/visible/blink,
|
|
/decl/emote/visible/flash
|
|
)
|
|
|
|
/mob/living/carbon/brain/can_emote()
|
|
return (istype(container, /obj/item/mmi) && ..())
|
|
|
|
/mob/living/carbon/brain/get_available_emotes()
|
|
return global._brain_default_emotes.Copy()
|