From 62a4ddb1745baf94c1954661399303fdb1c54ac6 Mon Sep 17 00:00:00 2001 From: Adri <33333517+Miraviel@users.noreply.github.com> Date: Sat, 5 Nov 2022 14:44:23 +0100 Subject: [PATCH] Fixes the telecomms machine having "Noise" as a listed language (#19611) --- code/game/machinery/tcomms/nttc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/tcomms/nttc.dm b/code/game/machinery/tcomms/nttc.dm index 72698d5be7a..c54888d50ea 100644 --- a/code/game/machinery/tcomms/nttc.dm +++ b/code/game/machinery/tcomms/nttc.dm @@ -177,7 +177,7 @@ /datum/nttc_configuration/proc/update_languages() for(var/language in GLOB.all_languages) var/datum/language/L = GLOB.all_languages[language] - if(L.flags & HIVEMIND) + if(L.flags & (HIVEMIND | NONGLOBAL)) continue valid_languages[language] = TRUE