From c0a896282c2b2fffe93440bc89163ee2f71805f6 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Wed, 14 Jan 2015 21:25:28 -0500 Subject: [PATCH] Adds visible emote shortcut to complement the audible emote shortcut. --- code/modules/mob/living/carbon/human/say.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index 3f89f5b230..60d18aee6e 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -25,6 +25,8 @@ if(copytext(message,1,2) == "*") return emote(copytext(message,2)) + else if(copytext(message,1,2) == "^") + return custom_emote(1, copytext(message,2)) if(name != GetVoice()) alt_name = "(as [get_id_name("Unknown")])"