From 82898f22c6afe3207238bd771b61c13ea837d93e Mon Sep 17 00:00:00 2001 From: Morrow Date: Wed, 25 Oct 2023 21:28:04 -0400 Subject: [PATCH] flavor --- code/datums/components/phone.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/phone.dm b/code/datums/components/phone.dm index 1d71dcba2d..dbf753b770 100644 --- a/code/datums/components/phone.dm +++ b/code/datums/components/phone.dm @@ -377,7 +377,7 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) for(var/mob/dead/observer/cycled_observer in GLOB.player_list) if((cycled_observer.client) && (cycled_observer.client.prefs) && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) - var/ghost_message = "[comm_paygrade][speaker] (F) on '[phone_id]' to '[calling_phone.phone_id]': \"[message]\"" + var/ghost_message = "[comm_paygrade][speaker] (F) on '[phone_id]' to '[calling_phone.phone_id]': \"[message]\"" cycled_observer.show_message(ghost_message, SHOW_MESSAGE_AUDIBLE) calling_phone.handle_hear(message, message_language, speaker, direct_talking)