From a5233a77d6649b65ce1a35ce65d1eed6ab3d330b Mon Sep 17 00:00:00 2001 From: Steelpoint Date: Mon, 27 Jul 2015 01:35:23 +0800 Subject: [PATCH] DescUpdate --- code/modules/admin/verbs/one_click_antag.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index a584d8fc587..ca97f4d5905 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -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()