From 602e1e6bbfef0471956ed90460714f9435b3b4a9 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Thu, 28 Sep 2017 07:03:34 -0400 Subject: [PATCH] AFK players count as dead for the assassinate objective (#31046) --- code/game/gamemodes/objective.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 75ed90d712..c00328243a 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -121,7 +121,7 @@ return target /datum/objective/assassinate/check_completion() - return !target || !considered_alive(target) + return !considered_alive(target) || considered_afk(target) /datum/objective/assassinate/update_explanation_text() ..()