From e900f12d8ce82fc2b65b4e501f5062843efc929e Mon Sep 17 00:00:00 2001 From: DZD Date: Mon, 9 Feb 2015 16:43:05 -0500 Subject: [PATCH] Destroy AI Name Fix - Target AI will now show name after the AI changes its name, rather than its original name. --- 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 964001722af..f80b943cf76 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -743,7 +743,7 @@ datum/objective/destroy var/mob/living/silicon/ai/target_ai = pick(possible_targets) target = target_ai.mind if(target && target.current) - explanation_text = "Destroy [target.name], the experimental AI." + explanation_text = "Destroy [target.current.real_name], the experimental AI." else explanation_text = "Free Objective" return target