From 3c3895ee4c54a29e1490f09f67d67e405b2be8e5 Mon Sep 17 00:00:00 2001 From: Erthilo Date: Sun, 6 May 2012 00:19:43 +0100 Subject: [PATCH] A hacky way to stop snoring from being global. --- code/modules/mob/living/carbon/human/emote.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index fc6980a7891..1ded7bb398b 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -526,6 +526,8 @@ continue //skip monkeys and leavers if (istype(M, /mob/new_player)) continue + if(findtext(message,"snore")) + continue if(M.stat == 2 && M.client.ghost_sight && !(M in viewers(src,null))) M.show_message(message)