From 39b8f7b798fc7935408cc31f2a2dcecf036960da Mon Sep 17 00:00:00 2001 From: "VivianFoxfoot@gmail.com" Date: Fri, 2 Mar 2012 03:22:11 +0000 Subject: [PATCH] End of game prints out the AI's and any borgs ckeys. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3228 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/gameticker.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 81b3038c35..bcdca0a649 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -198,23 +198,23 @@ var/global/datum/controller/gameticker/ticker for (var/mob/living/silicon/ai/aiPlayer in world) if (aiPlayer.stat != 2) - world << "[aiPlayer.name]'s laws at the end of the game were:" + world << "[aiPlayer.name] (Played by: [aiPlayer.key])'s laws at the end of the game were:" else - world << "[aiPlayer.name]'s laws when it was deactivated were:" + world << "[aiPlayer.name] (Played by: [aiPlayer.key])'s laws when it was deactivated were:" aiPlayer.show_laws(1) if (aiPlayer.connected_robots.len) var/robolist = "The AI's loyal minions were: " for(var/mob/living/silicon/robot/robo in aiPlayer.connected_robots) - robolist += "[robo.name][robo.stat?" (Deactivated), ":", "]" + robolist += "[robo.name][robo.stat?" (Deactivated) (Played by: [robo.key]), ":", (Played by: [robo.key])"]" world << "[robolist]" for (var/mob/living/silicon/robot/robo in world) if (!robo.connected_ai) if (robo.stat != 2) - world << "[robo.name] survived as an AI-less borg! Its laws were:" + world << "[robo.name] (Played by: [robo.key]) survived as an AI-less borg! Its laws were:" else - world << "[robo.name] was unable to survive the rigors of being a cyborg without an AI. Its laws were:" + world << "[robo.name] (Played by: [robo.key]) was unable to survive the rigors of being a cyborg without an AI. Its laws were:" robo.laws.show_laws(world) mode.declare_completion()//To declare normal completion.