From 3ec9b0162c9796425909b197cd17c3d305b159d9 Mon Sep 17 00:00:00 2001 From: Lumipharon Date: Sun, 22 Dec 2024 11:15:19 +1300 Subject: [PATCH] Radio TTS fix (#16829) --- code/game/objects/machinery/telecomms/broadcasting.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/machinery/telecomms/broadcasting.dm b/code/game/objects/machinery/telecomms/broadcasting.dm index 6c25283a8987b..06606b9cdff2f 100644 --- a/code/game/objects/machinery/telecomms/broadcasting.dm +++ b/code/game/objects/machinery/telecomms/broadcasting.dm @@ -225,7 +225,7 @@ var/list/list_of_listeners = list() for(var/mob/living/carbon/human/potential_hearer in receive) - if(potential_hearer.stat >= UNCONSCIOUS || potential_hearer.disabilities & DEAF || !(potential_hearer.client?.prefs.sound_tts != TTS_SOUND_OFF)) + if(potential_hearer.stat >= UNCONSCIOUS || !(potential_hearer.client?.prefs.sound_tts != TTS_SOUND_OFF) || potential_hearer == speaker || isdeaf(potential_hearer)) continue var/radio_flags = potential_hearer?.client?.prefs?.radio_tts_flags