From a975a35f9237679fce8d7f0e378ed37d4bc14c11 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 21 Apr 2017 17:24:59 -0500 Subject: [PATCH] Fixes languages being understood over radio --- code/modules/mob/living/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 0c50603a92..4cb8147b9e 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -177,7 +177,7 @@ GLOBAL_LIST_INIT(department_radio_keys, list( //Log what we've said with an associated timestamp, using the list's len for safety/to prevent overwriting messages log_message(message, INDIVIDUAL_SAY_LOG) - var/radio_return = radio(message, message_mode, spans) + var/radio_return = radio(message, message_mode, spans, language) if(radio_return & ITALICS) spans |= SPAN_ITALICS if(radio_return & REDUCE_RANGE)