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)