From 45bc508190806eefc0cd921bc87dbc43dccdb123 Mon Sep 17 00:00:00 2001 From: Jack Edge Date: Thu, 20 Apr 2017 15:36:20 +0100 Subject: [PATCH] Fixes languages being understood over radio Fixes #26306. Fixes #26192. :cl: coiax fix: Fixed people understanding languages over the radio when they shouldn't. /:cl: --- 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 22ff90608b2..4818a58dad4 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)