From d9e5df8fcc25abcc7e327ec454291d19fd00d2fe Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Mon, 17 Jul 2023 19:02:17 +0900 Subject: [PATCH] fix: Mute people can show Emote Typing Indicator (#21668) https://github.com/ss220-space/Paradise/pull/2467 --- code/modules/mob/typing_indicator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index a14350bc0b5..9345d0836d9 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -21,7 +21,7 @@ GLOBAL_LIST_EMPTY(typing_indicator) var/image/I = GLOB.typing_indicator[bubble_icon] I.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA - if(ishuman(src)) + if(ishuman(src) && !me) var/mob/living/carbon/human/H = src if(HAS_TRAIT(H, TRAIT_MUTE)) overlays -= GLOB.typing_indicator[bubble_icon]