From 0f5f78fcc972231efd238f6a9e843c596de08415 Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Mon, 20 Jan 2014 22:42:56 -0800 Subject: [PATCH] fix for muting deadme as well. --- code/modules/mob/emote.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index 8a9f2a3b905..e2125ada66c 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -57,6 +57,12 @@ src << "\red You have deadchat muted." return + if(!src.client.holder) + if(!dsay_allowed) + src << "\red Deadchat is globally muted" + return + + var/input if(!message) input = copytext(sanitize(input(src, "Choose an emote to display.") as text|null), 1, MAX_MESSAGE_LEN)