From feb02815ad4ac6ac8afbd3f0bfdb279406aa9433 Mon Sep 17 00:00:00 2001 From: coiax Date: Mon, 16 May 2016 01:40:04 +0100 Subject: [PATCH] Fixes #17665, abductor event finds people now (#17686) --- code/modules/events/abductor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/abductor.dm b/code/modules/events/abductor.dm index 7f16410482b..19ccda1472b 100644 --- a/code/modules/events/abductor.dm +++ b/code/modules/events/abductor.dm @@ -16,7 +16,7 @@ /datum/round_event/ghost_role/abductor/spawn_role() var/list/mob/dead/observer/candidates = get_candidates("abductor", null, ROLE_ABDUCTOR) - if(!candidates.len < 2) + if(candidates.len < 2) return NOT_ENOUGH_PLAYERS //Oh god why we can't have static functions // I feel your pain, bro