From dcc7b8e1dd79f8a724577f961c04086dba88b756 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Sun, 8 Apr 2012 21:10:51 +0100 Subject: [PATCH] Reverted some changes. Clarified the admin messages. --- code/game/machinery/computer/communications.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 092a060b2e5..d32ab1a48d9 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -81,7 +81,7 @@ //Only notify the admins if an actual change happened log_game("[key_name(usr)] has changed the security level to [get_security_level()].") message_admins("[key_name_admin(usr)] has changed the security level to [get_security_level()].", 1) - switch(security_level) + switch(get_security_level()) if(SEC_LEVEL_GREEN) feedback_inc("alert_comms_green",1) if(SEC_LEVEL_BLUE) @@ -181,7 +181,7 @@ return Centcomm_announce(input, usr) usr << "Message transmitted." - log_say("[key_name(usr)] has made a Centcomm announcement: [input]") + log_say("[key_name(usr)] has sent Centcomm a message: [input]") centcomm_message_cooldown = 1 spawn(600)//One minute cooldown message_cooldown = 0 @@ -198,7 +198,7 @@ return Syndicate_announce(input, usr) usr << "Message transmitted." - log_say("[key_name(usr)] has made a Syndicate announcement: [input]") + log_say("[key_name(usr)] has sent the Syndicate a message: [input]") centcomm_message_cooldown = 1 spawn(600)//One minute cooldown message_cooldown = 0