From 3e37a8e5626e35fd3b42ccf5fbd7dfef4221a5bb Mon Sep 17 00:00:00 2001 From: Steelpoint Date: Mon, 5 Jan 2015 20:23:05 +0800 Subject: [PATCH] MissedANumber --- code/modules/admin/verbs/one_click_antag.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index d853e46d858..28d176fcb37 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -452,9 +452,9 @@ client/proc/one_click_antag() if(!G.key) candidates.Remove(G) - if(candidates.len >= 1) //Minimum 5 to be considered a squad + if(candidates.len >= 4) //Minimum 4 to be considered a squad //Pick the (un)lucky players - var/numagents = min(1,candidates.len) //How many officers to spawn + var/numagents = min(7,candidates.len) //How many officers to spawn var/list/spawnpoints = emergencyresponseteamspawn while(numagents && spawnpoints.len && candidates.len) var/spawnloc = spawnpoints[1]