From 3d4e0fd84e183e53f3a8cb336955e14a73d1bf55 Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Sat, 5 Feb 2011 17:16:54 +0000 Subject: [PATCH] derped hard with that last update, I tweaked the success checking into a single line, and forgot to add the 'return 1' I'd originally gone in to add. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@967 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/objective.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 8ad1d66793b..5bf956e0a9a 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -47,6 +47,7 @@ datum check_completion() if(target && target.current) if(target.current.stat == 2 || istype(target.current.loc.loc, /area/tdome) || istype(target.current,/mob/living/silicon)) //Assuming this works, people in the thunderdome and borgs now count as dead for traitor objectives. --NeoFite + return 1 else return 0 else