Fix firealarm alert level indicator (#2269)

* 0-indexes seclevel defines, fixes set_security_level proc

* Adds orange-alert level to adminverb
This commit is contained in:
Alex 'Avunia' Takiya
2020-12-21 20:53:55 +01:00
committed by GitHub
parent 83816b83b0
commit d67f754674
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -883,7 +883,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(!check_rights(R_ADMIN))
return
var/level = input("Select security level to change to","Set Security Level") as null|anything in list("green","blue","violet","amber","red","delta","gamma")
var/level = input("Select security level to change to","Set Security Level") as null|anything in list("green","blue","violet","orange","amber","red","delta","gamma")
if(level)
set_security_level(level)