From f64e766a008bba032a60dd1a920e2ea90ccf2e56 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 26 Sep 2022 14:15:08 +0200 Subject: [PATCH] [MIRROR] Creates a proper CentCom group for orbit UI [MDB IGNORE] (#16439) * Creates a proper CentCom group for orbit UI (#70098) add: Added new grouping to orbit menu for CentCom agents. * Creates a proper CentCom group for orbit UI Co-authored-by: Jeremiah <42397676+jlsnow301@users.noreply.github.com> --- tgui/packages/tgui/interfaces/Orbit.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tgui/packages/tgui/interfaces/Orbit.tsx b/tgui/packages/tgui/interfaces/Orbit.tsx index 13a3dacd420..20ac8bcce05 100644 --- a/tgui/packages/tgui/interfaces/Orbit.tsx +++ b/tgui/packages/tgui/interfaces/Orbit.tsx @@ -4,6 +4,7 @@ import { capitalizeFirst, multiline } from 'common/string'; import { Button, Collapsible, Icon, Input, Section, Stack } from '../components'; import { Window } from '../layouts'; import { flow } from 'common/fp'; +import { COLORS } from '../constants'; type AntagGroup = [string, Observable[]]; @@ -33,6 +34,7 @@ const ANTAG2COLOR = { 'Abductors': 'pink', 'Ash Walkers': 'olive', 'Biohazards': 'brown', + 'CentCom': COLORS.department.centcom, } as const; const ANTAG2GROUP = { @@ -41,6 +43,11 @@ const ANTAG2GROUP = { 'Ash Walker': 'Ash Walkers', 'Blob': 'Biohazards', 'Sentient Disease': 'Biohazards', + 'CentCom Commander': 'CentCom', + 'CentCom Head Intern': 'CentCom', + 'CentCom Intern': 'CentCom', + 'CentCom Official': 'CentCom', + 'Central Command': 'CentCom', 'Clown Operative': 'Clown Operatives', 'Clown Operative Leader': 'Clown Operatives', 'Nuclear Operative': 'Nuclear Operatives',