mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 23:47:16 +01:00
Hyperbot - Fix end of round report
no longer shows dead players, and format improvements
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user