diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 81b3038c357..bcdca0a649d 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.