From 343d04c72623589d553ebb3e1f1e670fff9dcdce Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Sun, 27 Apr 2014 00:06:19 -0500 Subject: [PATCH] Silicon emotes. --- code/modules/mob/living/silicon/say.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index d34a26d5cb..1205965b10 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -27,6 +27,9 @@ message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN)) return say_dead(message) + if(copytext(message,1,2) == "*") + return emote(copytext(message,2)) + var/bot_type = 0 //Let's not do a fuck ton of type checks, thanks. if(istype(src, /mob/living/silicon/ai)) bot_type = IS_AI