Fixing up security level text

This commit is contained in:
ZomgPonies
2014-01-08 02:52:35 -05:00
parent f0f6513d4c
commit 2a90d59001
2 changed files with 11 additions and 2 deletions
+9
View File
@@ -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
@@ -71,7 +71,7 @@
if(SEC_LEVEL_GAMMA)
world << "<font size=4 color='red'>Attention! GAMMA security level activated!</font>"
world << "<font color='red'>[config.alert_desc_red_upto]</font>"
world << "<font color='red'>[config.alert_desc_gamma]</font>"
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 << "<font size=4 color='red'>Attention! EPSILON security level activated!</font>"
world << "<font color='red'>[config.alert_desc_red_upto]</font>"
world << "<font color='red'>[config.alert_desc_epsilon]</font>"
security_level = SEC_LEVEL_EPSILON
if(SEC_LEVEL_DELTA)