No ckeys in round end report (#6610)

Implements a recent decision by the headmins.
This commit is contained in:
Werner
2019-06-24 14:36:18 +03:00
committed by Erki
parent 814d3c891d
commit 0c6527f19c
2 changed files with 46 additions and 5 deletions
+5 -5
View File
@@ -261,15 +261,15 @@ var/datum/controller/subsystem/ticker/SSticker
for (var/mob/living/silicon/ai/aiPlayer in mob_list)
if (aiPlayer.stat != 2)
to_world("<b>[aiPlayer.name] (Played by: [aiPlayer.key])'s laws at the end of the round were:</b>")
to_world("<b>[aiPlayer.name]'s laws at the end of the round were:</b>")
else
to_world("<b>[aiPlayer.name] (Played by: [aiPlayer.key])'s laws when it was deactivated were:</b>")
to_world("<b>[aiPlayer.name]'s laws when it was deactivated were:</b>")
aiPlayer.show_laws(1)
if (aiPlayer.connected_robots.len)
var/robolist = "<b>The AI's loyal minions were:</b> "
for(var/mob/living/silicon/robot/robo in aiPlayer.connected_robots)
robolist += "[robo.name][robo.stat?" (Deactivated) (Played by: [robo.key]), ":" (Played by: [robo.key]), "]"
robolist += "[robo.name][robo.stat?" (Deactivated), ":", "]"
to_world("[robolist]")
var/dronecount = 0
@@ -304,10 +304,10 @@ var/datum/controller/subsystem/ticker/SSticker
var/temprole = Mind.special_role
if(temprole) //if they are an antagonist of some sort.
if(temprole in total_antagonists) //If the role exists already, add the name to it
total_antagonists[temprole] += ", [Mind.name]([Mind.key])"
total_antagonists[temprole] += ", [Mind.name]"
else
total_antagonists.Add(temprole) //If the role doesnt exist in the list, create it and add the mob
total_antagonists[temprole] += ": [Mind.name]([Mind.key])"
total_antagonists[temprole] += ": [Mind.name]"
//Now print them all into the log!
log_game("Antagonists at round end were...")