DescUpdate

This commit is contained in:
Steelpoint
2015-07-27 01:35:23 +08:00
parent 45ebc998de
commit a5233a77d6
+4 -4
View File
@@ -450,17 +450,17 @@
// CENTCOM RESPONSE TEAM
/datum/admins/proc/makeEmergencyresponseteam()
var/alert = input("Which team should we send?", "Select Response Level") as null|anything in list("Green: Centcom Official", "Blue: Light ERT (No Guns)", "Amber: Full ERT (Energy Guns)", "Red: Elite ERT (Pulse Guns)", "Delta: Deathsquad")
var/alert = input("Which team should we send?", "Select Response Level") as null|anything in list("Green: Centcom Official", "Blue: Light ERT (No Armoury Access)", "Amber: Full ERT (Armoury Access)", "Red: Elite ERT (Armoury Access + Pulse Guns)", "Delta: Deathsquad")
if(!alert)
return
switch(alert)
if("Delta: Deathsquad")
return makeDeathsquad()
if("Red: Elite ERT (Pulse Guns)")
if("Red: Elite ERT (Armoury Access + Pulse Weapons)")
alert = "Red"
if("Amber: Full ERT (Energy Guns)")
if("Amber: Full ERT (Armoury Access)")
alert = "Amber"
if("Blue: Light ERT (No Guns)")
if("Blue: Light ERT (No Armoury Access)")
alert = "Blue"
if("Green: Centcom Official")
return makeOfficial()