From 2a90d59001df0eb0f4acd1d98e304fa602b711ca Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Wed, 8 Jan 2014 02:52:35 -0500 Subject: [PATCH] Fixing up security level text --- code/controllers/configuration.dm | 9 +++++++++ code/modules/security levels/security levels.dm | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 2f01363ce44..2c6c33b316c 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -82,6 +82,9 @@ var/alert_desc_red_upto = "There is an immediate serious threat to the station. Security may have weapons unholstered at all times. Random searches are allowed and advised." var/alert_desc_red_downto = "The self-destruct mechanism has been deactivated, there is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised." var/alert_desc_delta = "The station's self-destruct mechanism has been engaged. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill." + var/alert_desc_epsilon = "Security level EPSILON reached. Consider all contracts terminated." + var/alert_desc_gamma = "GAMMA Security level has been set by Centcom, Security is to have weapons at all times, and all civilians are to seek their nearest head for transportation to a safe location. GAMMA Armory unlocked for security personnel." + var/forbid_singulo_possession = 0 @@ -372,6 +375,12 @@ if("alert_delta") config.alert_desc_delta = value + if("alert_gamma") + config.alert_desc_gamma = value + + if("alert_epsilon") + config.alert_desc_epsilon = value + if("forbid_singulo_possession") forbid_singulo_possession = 1 diff --git a/code/modules/security levels/security levels.dm b/code/modules/security levels/security levels.dm index b682139e2b7..a8d1271dfbd 100644 --- a/code/modules/security levels/security levels.dm +++ b/code/modules/security levels/security levels.dm @@ -71,7 +71,7 @@ if(SEC_LEVEL_GAMMA) world << "Attention! GAMMA security level activated!" - world << "[config.alert_desc_red_upto]" + world << "[config.alert_desc_gamma]" if(security_level < SEC_LEVEL_RED) for(var/obj/machinery/door/airlock/highsecurity/red/R in world) if(R.z == 1) @@ -86,7 +86,7 @@ security_level = SEC_LEVEL_GAMMA if(SEC_LEVEL_EPSILON) world << "Attention! EPSILON security level activated!" - world << "[config.alert_desc_red_upto]" + world << "[config.alert_desc_epsilon]" security_level = SEC_LEVEL_EPSILON if(SEC_LEVEL_DELTA)