From 5ab8bc7a791522d3cb22859fd38eaa5c7b3a74c2 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:22:17 -0500 Subject: [PATCH] [MIRROR] Fixes missing prefix, :g (changeling hivemind) to actually be indicated in the Say TGUI (#1143) * Fixes missing prefix, :g (changeling hivemind) to actually be indicated in the Say TGUI (#81661) ## About The Pull Request The Say menu didn't have any visual indications that cling hivemind was a usable prefix to communicate, this PR rectifies that. ## Why It's Good For The Game More visual indicators..... GOOD! ## Changelog :cl: fix: The say TGUI would recognize :g (changeling hivemind) prefix. and give a visual indicator in it that you are talking in the right channel /:cl: * Fixes missing prefix, :g (changeling hivemind) to actually be indicated in the Say TGUI --------- Co-authored-by: Singul0 <127663818+Singul0@users.noreply.github.com> --- tgui/packages/tgui-say/constants.ts | 1 + tgui/packages/tgui-say/styles/colors.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/tgui/packages/tgui-say/constants.ts b/tgui/packages/tgui-say/constants.ts index 3033154e509..0c3d7943c26 100644 --- a/tgui/packages/tgui-say/constants.ts +++ b/tgui/packages/tgui-say/constants.ts @@ -21,6 +21,7 @@ export const RADIO_PREFIXES = { ':b ': 'io', ':c ': 'Cmd', ':e ': 'Engi', + ':g ': 'Cling', ':m ': 'Med', ':n ': 'Sci', ':o ': 'AI', diff --git a/tgui/packages/tgui-say/styles/colors.scss b/tgui/packages/tgui-say/styles/colors.scss index 178e2ae524f..52e6153fd60 100644 --- a/tgui/packages/tgui-say/styles/colors.scss +++ b/tgui/packages/tgui-say/styles/colors.scss @@ -10,6 +10,7 @@ $_channel_map: ( 'Admin': #ffbbff, 'AI': #d65d95, 'CCom': #2681a5, + 'Cling': #4c701f, 'Cmd': #fcdf03, 'Engi': #f37746, 'Hive': #855d85,