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)