diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 9a9b2d577a..3bed4357d8 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -182,7 +182,6 @@ var/datum/roundinfo/roundinfo = new() else //feedback_set_details("end_proper","proper completion") world << "\blue Restarting in [restart_timeout/10] seconds" - // send2irc(world.url,"Server Rebooting!") if(blackbox) @@ -199,23 +198,23 @@ var/datum/roundinfo/roundinfo = new() 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.