Hyperbot - Fix end of round report

no longer shows dead players, and format improvements
This commit is contained in:
QuoteFox
2021-04-26 21:31:04 +01:00
parent 78d154ec77
commit 649f99cbe3
+7 -7
View File
@@ -184,14 +184,14 @@
CHECK_TICK
//Hyper bot list players
botmsg += "**The Crew!** ```"
botmsg += "\n**The Crew!** ```"
for(var/p in GLOB.player_list)
var/mob/P = p
botmsg += "[P.name]"
if(P.job)
botmsg += "([P.job])"
botmsg += "\n"
var/mob/living/P = p //the living crew members
if(P)
botmsg += "[P.real_name]"
if(P.job)
botmsg += " ([P.job])"
botmsg += "\n"
botmsg += "```"
CHECK_TICK