From b89c3dd6cf9fa242f13fbeb27d5319e04cd9de3c Mon Sep 17 00:00:00 2001 From: Couls Date: Tue, 12 Mar 2019 19:42:15 -0400 Subject: [PATCH] Tcomms no longer translates emotes! --- code/game/machinery/telecomms/ntsl2.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/telecomms/ntsl2.dm b/code/game/machinery/telecomms/ntsl2.dm index d24b51389ec..f01f173ebb3 100644 --- a/code/game/machinery/telecomms/ntsl2.dm +++ b/code/game/machinery/telecomms/ntsl2.dm @@ -346,7 +346,8 @@ GLOBAL_DATUM_INIT(nttc_config, /datum/nttc_configuration, new()) setting_language = null else for(var/datum/multilingual_say_piece/S in message_pieces) - S.speaking = GLOB.all_languages[setting_language] + if(S.speaking != GLOB.all_languages["Noise"]) // check if they are emoting, these do not need to be translated + S.speaking = GLOB.all_languages[setting_language] // Regex replacements if(islist(regex) && regex.len > 0)