mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-08-29 07:36:18 +01:00
Cancel Selection on alert level thing
This commit is contained in:
@@ -959,11 +959,17 @@ var/list/admin_verbs_mod = list(
|
||||
"Blue",
|
||||
"Red",
|
||||
"Delta",
|
||||
"Cancel",
|
||||
)
|
||||
|
||||
var/current_level = get_security_level()
|
||||
var/input = input("Select the alert level.", "Alert Level -( [current_level] )", null, null) in L
|
||||
if(!input)
|
||||
return
|
||||
|
||||
switch(input)
|
||||
if("Cancel")
|
||||
return
|
||||
if("Green")
|
||||
set_security_level(SEC_LEVEL_GREEN)
|
||||
if("Blue")
|
||||
|
||||
Reference in New Issue
Block a user