From 48cddaaf5126545d06eef76888ff8205279e9048 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Mon, 5 Apr 2021 01:47:32 -0700 Subject: [PATCH] Message to Centcom "Please send help, I don't know how I'm contacting you without captain access, but it would sure be nice about now!" Simply enough made it so anyone who can access the communications console normally can message Central Command. --- code/game/machinery/computer/communications.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 4e7c6a5b..2c2f77be 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -285,7 +285,7 @@ // OMG CENTCOM LETTERHEAD if("MessageCentCom") - if(authenticated==2) + if(authenticated) if(!checkCCcooldown()) to_chat(usr, "Arrays recycling. Please stand by.") return @@ -301,7 +301,7 @@ // OMG SYNDICATE ...LETTERHEAD if("MessageSyndicate") - if((authenticated==2) && (obj_flags & EMAGGED)) + if((authenticated) && (obj_flags & EMAGGED)) if(!checkCCcooldown()) to_chat(usr, "Arrays recycling. Please stand by.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) @@ -483,6 +483,11 @@ dat += "
\[ Cancel Shuttle Call \]" dat += "
\[ Set Status Display \]" + if(!(obj_flags & EMAGGED)) + dat += "
\[ Send Message to CentCom \]" + else + dat += "
\[ Send Message to \[UNKNOWN\] \]" + dat += "
\[ Restore Backup Routing Data \]" if (authenticated==2) dat += "

Captain Functions" dat += "
\[ Make a Captain's Announcement \]" @@ -494,11 +499,6 @@ dat += "
\[ Change Alert Level \]" dat += "
\[ Emergency Maintenance Access \]" dat += "
\[ Request Nuclear Authentication Codes \]" - if(!(obj_flags & EMAGGED)) - dat += "
\[ Send Message to CentCom \]" - else - dat += "
\[ Send Message to \[UNKNOWN\] \]" - dat += "
\[ Restore Backup Routing Data \]" else dat += "
\[ Log In \]" if(STATE_CALLSHUTTLE)