diff --git a/code/modules/modular_computers/file_system/programs/command/comm.dm b/code/modules/modular_computers/file_system/programs/command/comm.dm
index 8de74ed700..b69ba7bc73 100644
--- a/code/modules/modular_computers/file_system/programs/command/comm.dm
+++ b/code/modules/modular_computers/file_system/programs/command/comm.dm
@@ -66,6 +66,9 @@
data["current_security_level_title"] = num2seclevel(security_level)
data["def_SEC_LEVEL_DELTA"] = SEC_LEVEL_DELTA
+ data["def_SEC_LEVEL_YELLOW"] = SEC_LEVEL_YELLOW
+ data["def_SEC_LEVEL_ORANGE"] = SEC_LEVEL_ORANGE
+ data["def_SEC_LEVEL_VIOLET"] = SEC_LEVEL_VIOLET
data["def_SEC_LEVEL_BLUE"] = SEC_LEVEL_BLUE
data["def_SEC_LEVEL_GREEN"] = SEC_LEVEL_GREEN
@@ -215,6 +218,12 @@
switch(security_level)
if(SEC_LEVEL_GREEN)
feedback_inc("alert_comms_green",1)
+ if(SEC_LEVEL_YELLOW)
+ feedback_inc("alert_comms_yellow",1)
+ if(SEC_LEVEL_ORANGE)
+ feedback_inc("alert_comms_orange",1)
+ if(SEC_LEVEL_VIOLET)
+ feedback_inc("alert_comms_violet",1)
if(SEC_LEVEL_BLUE)
feedback_inc("alert_comms_blue",1)
else
diff --git a/html/changelogs/Novacat - modularcomputers.yml b/html/changelogs/Novacat - modularcomputers.yml
index 796695a722..1e21807f7f 100644
--- a/html/changelogs/Novacat - modularcomputers.yml
+++ b/html/changelogs/Novacat - modularcomputers.yml
@@ -34,3 +34,6 @@ delete-after: True
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Ports initial infrastructure for modular computers from Baystation."
+ - rscadd: "Cameras now have a slight static when viewing through them."
+ - rscadd: "Adds Digital Warrant Program, to set warrants. Comes with a device."
+ - rscadd: "Adds Supermatter Monitor program."
diff --git a/nano/templates/mod_communication.tmpl b/nano/templates/mod_communication.tmpl
index cd943d2122..0b0750369f 100644
--- a/nano/templates/mod_communication.tmpl
+++ b/nano/templates/mod_communication.tmpl
@@ -4,7 +4,7 @@
{{if data.emagged}}
{{:helper.link('Send an emergency message to [UNKNOWN]', null, {'action' : 'message', 'target' : 'emagged'}, data.isAI || !data.net_comms ? 'disabled' : null)}}
{{else}}
- {{:helper.link('Send an emergency message to ' + data.boss_short, null, {'action' : 'message', 'target' : 'regular'}, data.isAI || !data.net_comms ? 'disabled' : null)}}
+ {{:helper.link('Send an emergency message to Centcom', null, {'action' : 'message', 'target' : 'regular'}, data.isAI || !data.net_comms ? 'disabled' : null)}}
{{/if}}
{{:helper.link('Change alert level', null, {'action' : 'sw_menu', 'target' : 5}, data.isAI || !data.net_syscont || !data.net_comms ? 'disabled' : null)}}
{{if data.have_shuttle && data.have_shuttle_called}}
@@ -42,7 +42,7 @@
Line 1: {{:helper.link(data.message_line1 ? data.message_line1 : '(none)', null, {'action' : 'setstatus', 'target' : 'line1'})}}
Line 2: {{:helper.link(data.message_line2 ? data.message_line2 : '(none)', null, {'action' : 'setstatus', 'target' : 'line2'})}}
- Alert: {{:helper.link('Red Alert', null, {'action' : 'setstatus', 'target' : 'alert', 'alert' : 'redalert'})}}
+
Alert: {{:helper.link('Alert', null, {'action' : 'setstatus', 'target' : 'alert', 'alert' : 'redalert'})}}
{{:helper.link('Lockdown', null, {'action' : 'setstatus', 'target' : 'alert', 'alert' : 'lockdown'})}}
{{:helper.link('Biohazard', null, {'action' : 'setstatus', 'target' : 'alert', 'alert' : 'biohazard'})}}
{{:helper.link('Back', null, {'action' : 'sw_menu', 'target' : 1})}}
@@ -52,6 +52,9 @@
The self-destruct mechanism is active. Find a way to deactivate the mechanism to lower the alert level or evacuate.
{{else}}
Set status:
+
{{:helper.link('Yellow', null, {'action' : 'setalert', 'target' : data.def_SEC_LEVEL_YELLOW}, data.current_security_level === data.def_SEC_LEVEL_YELLOW || data.isAI ? 'disabled' : null)}}
+
{{:helper.link('Orange', null, {'action' : 'setalert', 'target' : data.def_SEC_LEVEL_ORANGE}, data.current_security_level === data.def_SEC_LEVEL_ORANGE || data.isAI ? 'disabled' : null)}}
+
{{:helper.link('Violet', null, {'action' : 'setalert', 'target' : data.def_SEC_LEVEL_VIOLET}, data.current_security_level === data.def_SEC_LEVEL_VIOLET || data.isAI ? 'disabled' : null)}}
{{:helper.link('Blue', null, {'action' : 'setalert', 'target' : data.def_SEC_LEVEL_BLUE}, data.current_security_level === data.def_SEC_LEVEL_BLUE || data.isAI ? 'disabled' : null)}}
{{:helper.link('Green', null, {'action' : 'setalert', 'target' : data.def_SEC_LEVEL_GREEN}, data.current_security_level === data.def_SEC_LEVEL_GREEN || data.isAI ? 'disabled' : null)}}
{{/if}}