diff --git a/code/game/communications.dm b/code/game/communications.dm index c60d68b1483..d314da430ca 100644 --- a/code/game/communications.dm +++ b/code/game/communications.dm @@ -110,14 +110,15 @@ var/list/radiochannels = list( "Service" = 1349, ) //depenging helpers -var/const/SYND_FREQ = 1213 //nuke op frequency, coloured congo brown in chat window -var/const/SUPP_FREQ = 1347 //supply, coloured twine in chat window -var/const/SERV_FREQ = 1349 //service, coloured swamp green in chat window +var/const/SYND_FREQ = 1213 //nuke op frequency, coloured dark brown in chat window +var/const/SUPP_FREQ = 1347 //supply, coloured light brown in chat window +var/const/SERV_FREQ = 1349 //service, coloured green in chat window var/const/SCI_FREQ = 1351 //science, coloured plum in chat window var/const/COMM_FREQ = 1353 //command, colored gold in chat window var/const/MED_FREQ = 1355 //medical, coloured blue in chat window var/const/ENG_FREQ = 1357 //engineering, coloured orange in chat window -var/const/SEC_FREQ = 1359 //security, colored red in chat window +var/const/SEC_FREQ = 1359 //security, coloured red in chat window +var/const/DSQUAD_FREQ = 1441 //death squad frequency, coloured grey in chat window #define TRANSMISSION_WIRE 0 #define TRANSMISSION_RADIO 1 diff --git a/code/game/machinery/telecomms/broadcaster.dm b/code/game/machinery/telecomms/broadcaster.dm index 1ce0f5dd6c2..e1ae4223a80 100644 --- a/code/game/machinery/telecomms/broadcaster.dm +++ b/code/game/machinery/telecomms/broadcaster.dm @@ -384,6 +384,8 @@ var/message_delay = 0 // To make sure restarting the recentmessages list is kept part_a = "" else if (display_freq==SUPP_FREQ) part_a = "" + else if (display_freq==DSQUAD_FREQ) + part_a = "" // --- Filter the message; place it in quotes apply a verb --- @@ -681,6 +683,8 @@ var/message_delay = 0 // To make sure restarting the recentmessages list is kept part_a = "" else if (display_freq==SUPP_FREQ) part_a = "" + else if (display_freq==DSQUAD_FREQ) + part_a = "" // --- This following recording is intended for research and feedback in the use of department radio channels --- diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 66caa97c733..19238c0d2b8 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -517,6 +517,8 @@ var/GLOBAL_RADIO_TYPE = 1 // radio type to use part_a = "" else if (display_freq==SUPP_FREQ) part_a = "" + else if (display_freq==DSQUAD_FREQ) + part_a = "" var/quotedmsg = M.say_quote(message) diff --git a/interface/stylesheet.dm b/interface/stylesheet.dm index ef7758d989b..bd881f81190 100644 --- a/interface/stylesheet.dm +++ b/interface/stylesheet.dm @@ -33,6 +33,7 @@ em {font-style: normal; font-weight: bold;} .suppradio {color: #a8732b;} .servradio {color: #6eaa2c;} .syndradio {color: #6D3F40;} +.dsquadradio {color: #686868;} .alert {color: #ff0000;} h1.alert, h2.alert {color: #000000;}